/* ===========================================================
   Кафе-пиццерия «Техас» — Руднево
   Единая таблица стилей сайта (перенос с Tilda на статический хостинг)
   =========================================================== */

:root {
  --rp-bg: #ffffff;
  --rp-ink: #23170f;
  --rp-muted: #725f4f;
  --rp-accent: #8b3f34;
  --rp-accent-dark: #653027;
  --rp-card: rgba(255, 255, 255, .92);
  --rp-line: rgba(95, 54, 25, .12);
  --rp-dark: #111111;

  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--rp-ink);
  background: var(--rp-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------
   Header / navigation
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(17, 17, 17, .92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 14px 0;
}
.site-header__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.site-header__logo span { color: #ffb26b; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav__list {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .03em;
  opacity: .92;
  transition: opacity .2s ease;
}
.site-nav__list a:hover { opacity: 1; }

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  box-shadow: 0 10px 24px rgba(84, 43, 36, .3);
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 101;
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-nav { position: fixed; inset: 0 0 0 auto; }
  .burger { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: #151109;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav__list { flex-direction: column; gap: 26px; }
  .site-nav__list a { font-size: 20px; }
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0 80px;
  overflow: hidden;
  background: #23170f;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(43, 33, 0, .62), rgba(112, 28, 0, .68));
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #ffd9ad;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}
.hero__title em {
  display: block;
  font-style: normal;
  color: #ffb26b;
}
.hero__addr {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  max-width: 560px;
}
.hero__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.hero__phones a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
}
.hero__phones a.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  box-shadow: 0 16px 34px rgba(84, 43, 36, .35);
}
.hero__phones a.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  z-index: 1;
}
.hero__scroll svg { display: block; animation: rp-bounce 1.8s ease-in-out infinite; }
@keyframes rp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 480px) {
  .hero { padding: 130px 0 60px; }
  .hero__phones a { width: 100%; justify-content: center; }
  .hero__phones { flex-direction: column; }
}

/* ---------------------------------------------------------
   About
   --------------------------------------------------------- */
.about {
  padding: 90px 0;
  background: #fcfeff;
  text-align: center;
}
.about__photo {
  width: min(420px, 80vw);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 40px;
  box-shadow: 0 30px 70px rgba(114, 64, 28, .18);
}
.about__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.55;
  color: var(--rp-ink);
}

/* ---------------------------------------------------------
   Menu section title banner
   --------------------------------------------------------- */
.menu-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background:
    linear-gradient(to bottom, rgba(250, 142, 0, .45), rgba(43, 15, 0, .82)),
    linear-gradient(135deg, #7a3b12, #2b1400);
  text-align: center;
}
.menu-banner h2 {
  margin: 0;
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(36px, 6vw, 60px);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ===========================================================
   rp-menu widget (меню: пиццы, кальцоне, выпечка, подбор по составу)
   =========================================================== */
.rp-menu {
  --rp-bg: #ffffff;
  font-family: var(--font-sans);
  background: #ffffff;
  color: var(--rp-ink);
  padding: 72px 20px 90px;
}
.rp-menu * { box-sizing: border-box; }
.rp-wrap { max-width: 1180px; margin: 0 auto; }
.rp-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: end; margin-bottom: 34px; }
.rp-kicker {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--rp-line); color: var(--rp-accent-dark);
  font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
}
.rp-title { margin: 16px 0 12px; font-size: clamp(34px, 5vw, 68px); line-height: .95; letter-spacing: -.03em; font-weight: 900; }
.rp-subtitle { max-width: 720px; margin: 0; color: var(--rp-muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.55; }
.rp-info {
  justify-self: end; width: 100%; max-width: 390px; background: rgba(255, 255, 255, .72);
  border: 1px solid var(--rp-line); border-radius: 26px; padding: 20px;
  box-shadow: 0 20px 60px rgba(114, 64, 28, .08); backdrop-filter: blur(10px);
}
.rp-info strong { display: block; margin-bottom: 8px; font-size: 18px; }
.rp-sizes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.rp-size { display: grid; place-items: center; min-height: 42px; border-radius: 16px; background: #23170f; color: #fff; font-weight: 900; }
.rp-note { margin-top: 14px; color: var(--rp-muted); font-size: 14px; line-height: 1.45; }

/* Quick section nav */
.rp-section-nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--rp-line);
  box-shadow: 0 16px 42px rgba(114, 64, 28, .10);
  backdrop-filter: blur(10px);
}
.rp-section-nav__label { margin-right: 2px; color: var(--rp-muted); font-size: 13px; font-weight: 900; }
.rp-section-nav__link {
  display: inline-flex; align-items: center; justify-content: center; min-height: 40px;
  padding: 9px 15px; border-radius: 999px; background: #fbf5ee; border: 1px solid rgba(139, 63, 52, .18);
  color: var(--rp-accent-dark) !important; text-decoration: none !important; font-size: 14px; font-weight: 900;
  transition: background .2s ease, transform .2s ease;
}
.rp-section-nav__link:hover { background: #f2e4d8; transform: translateY(-1px); }

/* Ingredient picker */
.rp-picker {
  margin: 0 0 34px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 63, 52, .12), transparent 34%),
    linear-gradient(135deg, #fbf5ee 0%, #ffffff 58%, #f3e7db 100%);
  border: 1px solid rgba(139, 63, 52, .18);
  box-shadow: 0 18px 45px rgba(114, 64, 28, .08);
}
.rp-picker__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: end; margin-bottom: 18px; }
.rp-picker__kicker {
  display: inline-flex; width: fit-content; margin-bottom: 10px; padding: 8px 13px; border-radius: 999px;
  background: rgba(139, 63, 52, .10); color: var(--rp-accent-dark); font-size: 13px; font-weight: 900;
  letter-spacing: .04em; text-transform: uppercase;
}
.rp-picker__title { margin: 0 0 8px; font-size: clamp(28px, 3.4vw, 46px); line-height: 1; letter-spacing: -.03em; font-weight: 900; }
.rp-picker__text { max-width: 800px; margin: 0; color: var(--rp-muted); font-size: 16px; line-height: 1.5; }
.rp-picker__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin: 16px 0 12px; }
.rp-picker__input {
  width: 100%; min-height: 52px; padding: 0 16px; border-radius: 18px;
  border: 1px solid rgba(139, 63, 52, .22); background: #fff; color: var(--rp-ink);
  font: inherit; font-size: 16px; font-weight: 600; outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}
.rp-picker__input:focus { border-color: rgba(139, 63, 52, .48); box-shadow: 0 0 0 4px rgba(139, 63, 52, .10); }
.rp-picker__button {
  min-height: 52px; padding: 0 22px; border: 0; border-radius: 18px; color: #fff;
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  font: inherit; font-size: 15px; font-weight: 900; cursor: pointer;
  box-shadow: 0 12px 28px rgba(84, 43, 36, .20);
}
.rp-picker__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 10px; }
.rp-picker__chip {
  min-height: 34px; padding: 7px 11px; border: 1px solid rgba(139, 63, 52, .18); border-radius: 999px;
  background: #fff; color: var(--rp-accent-dark); font: inherit; font-size: 13px; font-weight: 900; cursor: pointer;
}
.rp-picker__chip:hover { background: #fbf5ee; }
.rp-picker__hint { margin: 0 0 14px; color: var(--rp-muted); font-size: 13px; line-height: 1.45; }
.rp-picker__results { display: grid; gap: 10px; }
.rp-picker-result {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center;
  padding: 15px; border-radius: 20px; background: rgba(255, 255, 255, .92); border: 1px solid rgba(139, 63, 52, .16);
}
.rp-picker-result h3 { margin: 0 0 5px; font-size: 20px; line-height: 1.15; letter-spacing: -.02em; font-weight: 900; }
.rp-picker-result p { margin: 0; color: var(--rp-muted); font-size: 14px; line-height: 1.4; }
.rp-picker-result__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.rp-picker-result__meta span { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: rgba(139, 63, 52, .10); color: var(--rp-accent-dark); font-size: 12px; font-weight: 900; }
.rp-picker-result__order {
  display: inline-flex; align-items: center; justify-content: center; min-width: 104px; min-height: 40px;
  padding: 9px 14px; border-radius: 999px; color: #fff !important;
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  text-decoration: none !important; font-size: 14px; font-weight: 900;
}
.rp-picker__empty { padding: 15px; border-radius: 18px; background: #fff; border: 1px dashed rgba(139, 63, 52, .28); color: var(--rp-muted); font-size: 14px; line-height: 1.45; }

@media (max-width: 980px) {
  .rp-picker__head { grid-template-columns: 1fr; }
  .rp-picker__badge { justify-self: start; max-width: none; }
}
@media (max-width: 640px) {
  .rp-picker { padding: 18px; border-radius: 24px; }
  .rp-picker__form { grid-template-columns: 1fr; }
  .rp-picker__button { width: 100%; }
  .rp-picker-result { grid-template-columns: 1fr; }
  .rp-picker-result__order { width: 100%; }
}

.rp-menu-anchor { scroll-margin-top: 90px; }
#about, #contacts, #menu, #calzone-menu, #bakery-menu, #pizza-menu { scroll-margin-top: 90px; }

/* Pizza grid */
.rp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.rp-card {
  position: relative; display: flex; flex-direction: column; min-height: 100%;
  border: 1px solid var(--rp-line); border-radius: 28px; background: var(--rp-card);
  box-shadow: 0 18px 45px rgba(114, 64, 28, .08); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.rp-card:hover { transform: translateY(-5px); border-color: rgba(139, 63, 52, .28); box-shadow: 0 26px 70px rgba(114, 64, 28, .16); }
.rp-card__media {
  position: relative; display: block; aspect-ratio: 1 / 1; padding: 16px;
  background: radial-gradient(circle at 50% 35%, #fffaf1 0%, #f6e9d6 100%);
  overflow: hidden; text-decoration: none !important;
}
.rp-photo {
  position: relative; z-index: 1; display: block; width: 100%; height: 100%;
  border-radius: 24px; object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(106, 57, 25, .18));
  transition: transform .28s ease;
}
.rp-card:hover .rp-photo { transform: scale(1.035); }
.rp-card__quick {
  position: absolute; right: 14px; bottom: 14px; padding: 10px 14px; border-radius: 999px;
  background: rgba(35, 23, 15, .9); color: #fff; font-size: 13px; font-weight: 900;
  opacity: 0; transform: translateY(8px); transition: opacity .22s ease, transform .22s ease;
}
.rp-card:hover .rp-card__quick { opacity: 1; transform: translateY(0); }
.rp-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.rp-card__top { display: grid; gap: 8px; margin-bottom: 12px; }
.rp-card h3 { margin: 0; font-size: 24px; line-height: 1.08; letter-spacing: -.02em; font-weight: 900; }
.rp-price { display: none; }
.rp-prices { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 2px 0 12px; }
.rp-price-cell {
  position: relative;
  min-height: 54px; padding: 8px 6px; border-radius: 14px; background: #f2e4d8;
  border: 1px solid rgba(139, 63, 52, .16); display: grid; place-items: center; text-align: center;
}
button.rp-price-cell {
  font: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}
button.rp-price-cell:hover { background: #ecdac9; border-color: rgba(139, 63, 52, .3); }
button.rp-price-cell:active { transform: scale(.96); }
button.rp-price-cell.is-selected {
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  border-color: transparent;
}
button.rp-price-cell.is-selected .rp-price-cell__size,
button.rp-price-cell.is-selected .rp-price-cell__value { color: #fff; }
.rp-price-cell--empty { opacity: .55; }
.rp-price-cell__size { display: block; margin-bottom: 3px; color: var(--rp-muted); font-size: 11px; line-height: 1; font-weight: 850; }
.rp-price-cell__value { display: block; color: var(--rp-accent-dark); font-size: 15px; line-height: 1.1; font-weight: 900; white-space: nowrap; }
.rp-price-cell__qty {
  position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: #23170f; color: #fff; font-size: 11px; font-weight: 900;
  display: none; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}
.rp-price-cell__qty:not(:empty) { display: flex; }
.rp-desc { margin: 0; color: var(--rp-muted); font-size: 15px; line-height: 1.45; flex: 1; }
.rp-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.rp-tags { display: flex; flex-wrap: wrap; gap: 6px; min-height: 30px; }
.rp-tags span { padding: 7px 9px; border-radius: 999px; background: rgba(139, 63, 52, .10); color: var(--rp-accent-dark); font-size: 12px; font-weight: 850; }
.rp-order {
  display: inline-flex; align-items: center; justify-content: center; min-width: 104px; min-height: 42px;
  padding: 10px 15px; border-radius: 999px; color: #fff !important;
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  text-decoration: none !important; font-size: 14px; font-weight: 900;
  box-shadow: 0 12px 28px rgba(84, 43, 36, .20); transition: transform .18s ease, filter .18s ease;
}
.rp-order:hover { transform: translateY(-1px); filter: saturate(1.12); }

.rp-disclaimer {
  margin: 28px 0 0; padding: 18px 20px; border-radius: 22px; background: rgba(255, 255, 255, .7);
  border: 1px solid var(--rp-line); color: var(--rp-muted); font-size: 14px; line-height: 1.5;
}

@media (max-width: 980px) {
  .rp-menu { padding: 54px 16px; }
  .rp-hero { grid-template-columns: 1fr; }
  .rp-info { justify-self: start; max-width: none; }
  .rp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 640px) {
  .rp-grid { grid-template-columns: 1fr; }
  .rp-card__body { padding: 18px; }
  .rp-card h3 { font-size: 22px; }
  .rp-prices { gap: 6px; }
  .rp-price-cell { min-height: 50px; padding: 7px 4px; }
  .rp-price-cell__value { font-size: 14px; }
  .rp-card__quick { opacity: 1; transform: none; }
}

/* Calzone */
.rp-calzone {
  margin-top: 34px; padding: 28px; border-radius: 30px; background: #ffffff;
  border: 1px solid var(--rp-line); box-shadow: 0 18px 45px rgba(114, 64, 28, .08);
}
.rp-calzone__head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: center; margin-bottom: 24px; }
.rp-calzone__icon {
  display: grid; place-items: center; aspect-ratio: 1.45 / 1; border-radius: 24px;
  background: radial-gradient(circle at 50% 35%, #fbf5ee 0%, #f2e0c6 100%);
  font-size: clamp(48px, 6vw, 78px);
  box-shadow: 0 18px 40px rgba(35, 23, 15, .12);
}
.rp-calzone__kicker {
  display: inline-flex; width: fit-content; margin-bottom: 12px; padding: 8px 13px; border-radius: 999px;
  background: rgba(139, 63, 52, .10); color: var(--rp-accent-dark); font-size: 13px; font-weight: 900;
  letter-spacing: .04em; text-transform: uppercase;
}
.rp-calzone__title { margin: 0 0 12px; font-size: clamp(30px, 4vw, 52px); line-height: .98; letter-spacing: -.03em; font-weight: 900; }
.rp-calzone__text { margin: 0; color: var(--rp-muted); font-size: 18px; line-height: 1.55; }
.rp-calzone__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rp-calzone-card { display: flex; flex-direction: column; min-height: 100%; padding: 18px; border-radius: 22px; background: #fbf5ee; border: 1px solid rgba(139, 63, 52, .16); }
.rp-calzone-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.15; letter-spacing: -.015em; font-weight: 900; }
.rp-calzone-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.rp-calzone-card__meta span { display: inline-flex; align-items: center; min-height: 32px; padding: 7px 10px; border-radius: 999px; background: #fff; color: var(--rp-accent-dark); font-size: 13px; font-weight: 900; border: 1px solid rgba(139, 63, 52, .16); }
.rp-calzone-card p { margin: 0; color: var(--rp-muted); font-size: 15px; line-height: 1.45; flex: 1; }
.rp-calzone-card__bottom { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.rp-calzone-card__add {
  flex: 1; min-height: 40px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(139, 63, 52, .3);
  background: #fff; color: var(--rp-accent-dark); font: inherit; font-size: 14px; font-weight: 900; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.rp-calzone-card__add:hover { background: #f2e4d8; }
.rp-calzone-card__add.is-selected {
  background: linear-gradient(135deg, var(--rp-accent), #9a6044); color: #fff; border-color: transparent;
}
.rp-calzone-card__order {
  display: inline-flex; align-items: center; justify-content: center; min-height: 40px;
  padding: 10px 14px; border-radius: 999px; color: #fff !important;
  background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  text-decoration: none !important; font-size: 14px; font-weight: 900;
}
@media (max-width: 980px) {
  .rp-calzone__head { grid-template-columns: 1fr; }
  .rp-calzone__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rp-calzone { padding: 18px; border-radius: 24px; }
  .rp-calzone__text { font-size: 16px; }
}

/* Bakery */
.rp-bakery {
  margin-top: 34px; padding: 28px; border-radius: 30px; background: #ffffff;
  border: 1px solid var(--rp-line); box-shadow: 0 18px 45px rgba(114, 64, 28, .08);
}
.rp-bakery__head { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end; margin-bottom: 22px; }
.rp-bakery__kicker { display: inline-flex; width: fit-content; margin-bottom: 12px; padding: 8px 13px; border-radius: 999px; background: rgba(139, 63, 52, .10); color: var(--rp-accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.rp-bakery__title { margin: 0 0 10px; font-size: clamp(30px, 4vw, 52px); line-height: .98; letter-spacing: -.03em; font-weight: 900; }
.rp-bakery__text { max-width: 780px; margin: 0; color: var(--rp-muted); font-size: 17px; line-height: 1.55; }
.rp-bakery__notice { justify-self: end; max-width: 330px; padding: 14px 16px; border-radius: 20px; background: #fbf5ee; border: 1px solid rgba(139, 63, 52, .16); color: var(--rp-accent-dark); font-size: 14px; font-weight: 850; line-height: 1.4; }
.rp-bakery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rp-bakery-card { display: flex; flex-direction: column; min-height: 100%; border-radius: 24px; overflow: hidden; background: #fbf5ee; border: 1px solid rgba(139, 63, 52, .16); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.rp-bakery-card:hover { transform: translateY(-4px); border-color: rgba(139, 63, 52, .28); box-shadow: 0 22px 55px rgba(114, 64, 28, .14); }
.rp-bakery-card__media { display: block; aspect-ratio: 1.25 / 1; padding: 14px; background: radial-gradient(circle at 50% 35%, #fffaf1 0%, #f5dfbd 100%); text-decoration: none !important; }
.rp-bakery-card__media img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 18px; filter: drop-shadow(0 16px 24px rgba(106, 57, 25, .16)); }
.rp-bakery-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.rp-bakery-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.15; letter-spacing: -.015em; font-weight: 900; }
.rp-bakery-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.rp-bakery-card__meta span { display: inline-flex; align-items: center; min-height: 32px; padding: 7px 10px; border-radius: 999px; background: #fff; color: var(--rp-accent-dark); font-size: 13px; font-weight: 900; border: 1px solid rgba(139, 63, 52, .16); }
.rp-bakery-card p { margin: 0; color: var(--rp-muted); font-size: 15px; line-height: 1.45; flex: 1; }
.rp-bakery-card__order { margin-top: 16px; display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 10px 14px; border-radius: 999px; color: #fff !important; background: linear-gradient(135deg, var(--rp-accent), #9a6044); text-decoration: none !important; font-size: 14px; font-weight: 900; }
@media (max-width: 980px) {
  .rp-bakery__head { grid-template-columns: 1fr; }
  .rp-bakery__notice { justify-self: start; max-width: none; }
  .rp-bakery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .rp-bakery { padding: 18px; border-radius: 24px; }
  .rp-bakery__grid { grid-template-columns: 1fr; }
  .rp-bakery__text { font-size: 16px; }
}

/* ---------------------------------------------------------
   Contacts / footer
   --------------------------------------------------------- */
.contacts {
  background: var(--rp-dark);
  color: #fff;
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 560px;
}
.contacts__map {
  position: relative;
  min-height: 380px;
  background: #0b0b0b;
  filter: grayscale(.35) contrast(1.05);
}
.contacts__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contacts__info {
  padding: 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.contacts__entity {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
}
.contacts__entity strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.contacts__block h3 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffb26b;
  font-weight: 800;
}
.contacts__block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
}
.contacts__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
}
.contacts__phone:hover { color: #ffb26b !important; }

@media (max-width: 900px) {
  .contacts__grid { grid-template-columns: 1fr; }
  .contacts__info { padding: 50px 24px; }
}

.site-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  font-size: 13px;
  padding: 22px 20px;
}

/* ---------------------------------------------------------
   Cart / order calculator
   --------------------------------------------------------- */
.cart-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: #23170f;
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cart-fab:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(0, 0, 0, .4); }
.cart-fab[hidden] { display: none; }
.cart-fab--pulse { animation: cart-fab-pulse .4s ease; }
@keyframes cart-fab-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.cart-fab__icon { font-size: 20px; line-height: 1; }
.cart-fab__count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: var(--rp-accent); display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.cart-fab__sum { font-weight: 900; font-size: 15px; white-space: nowrap; }

.cart-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(15, 10, 5, .5);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .25s ease;
}
.cart-overlay[hidden] { display: none; }
.cart-overlay.is-visible { opacity: 1; }

.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 201;
  width: min(420px, 100vw);
  background: #fffdfb;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.cart-panel.is-open { transform: translateX(0); }
.cart-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 22px 10px;
}
.cart-panel__head h2 { margin: 0; font-size: 22px; font-weight: 900; letter-spacing: -.02em; }
.cart-panel__close {
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--rp-line);
  background: #fff; font-size: 16px; cursor: pointer; color: var(--rp-ink);
}
.cart-panel__hint {
  margin: 0 22px 14px; color: var(--rp-muted); font-size: 13px; line-height: 1.45;
}
.cart-panel__list {
  flex: 1; overflow-y: auto; padding: 0 22px; display: grid; gap: 10px; align-content: start;
}
.cart-panel__empty {
  padding: 16px; border-radius: 16px; background: #fbf5ee; border: 1px dashed rgba(139, 63, 52, .28);
  color: var(--rp-muted); font-size: 14px; line-height: 1.5;
}
.cart-item {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center;
  padding: 12px 14px; border-radius: 16px; background: #fbf5ee; border: 1px solid rgba(139, 63, 52, .14);
}
.cart-item__name { margin: 0; font-size: 15px; font-weight: 850; line-height: 1.3; }
.cart-item__size { display: block; margin-top: 2px; color: var(--rp-muted); font-size: 12px; font-weight: 700; }
.cart-item__controls { display: flex; align-items: center; gap: 8px; }
.cart-item__btn {
  width: 28px; height: 28px; border-radius: 999px; border: 1px solid rgba(139, 63, 52, .25);
  background: #fff; color: var(--rp-accent-dark); font-size: 15px; font-weight: 900; line-height: 1; cursor: pointer;
}
.cart-item__btn:hover { background: #f2e4d8; }
.cart-item__qty { min-width: 18px; text-align: center; font-weight: 900; font-size: 14px; }
.cart-item__price {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--rp-muted);
}
.cart-item__price strong { color: var(--rp-accent-dark); font-size: 14px; }
.cart-item__remove {
  border: 0; background: none; color: var(--rp-muted); font-size: 12px; text-decoration: underline;
  cursor: pointer; padding: 0;
}
.cart-panel__footer {
  padding: 18px 22px 22px; border-top: 1px solid var(--rp-line); display: grid; gap: 12px;
}
.cart-panel__total {
  display: flex; align-items: baseline; justify-content: space-between; font-size: 16px; font-weight: 800;
}
.cart-panel__total strong { font-size: 26px; color: var(--rp-accent-dark); }
.cart-panel__call {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  border-radius: 999px; background: linear-gradient(135deg, var(--rp-accent), #9a6044);
  color: #fff !important; text-decoration: none !important; font-weight: 900; font-size: 16px;
  box-shadow: 0 14px 30px rgba(84, 43, 36, .3);
}
.cart-panel__clear {
  border: 0; background: none; color: var(--rp-muted); font-size: 13px; text-decoration: underline;
  cursor: pointer; padding: 4px;
}

@media (max-width: 560px) {
  .cart-fab { right: 14px; bottom: 14px; padding: 12px 16px; }
  .cart-fab__sum { display: none; }
  .cart-panel { width: 100vw; top: auto; height: min(86vh, 640px); border-radius: 24px 24px 0 0; }
  .cart-panel.is-open { transform: translateY(0); }
  .cart-panel:not(.is-open) { transform: translateY(100%); }
}

/* ---------------------------------------------------------
   Smooth color transitions between sections
   --------------------------------------------------------- */
.section-fade {
  width: 100%;
  height: 160px;
  pointer-events: none;
}
.section-fade--hero-about { background: linear-gradient(to bottom, #2a1206, #fcfeff); }
.section-fade--about-menu { background: linear-gradient(to bottom, #fcfeff, #7a3b12); }
.section-fade--menu-rpmenu { background: linear-gradient(to bottom, #2b1400, #ffffff); }
.section-fade--rpmenu-contacts { background: linear-gradient(to bottom, #ffffff, #111111); }

@media (max-width: 640px) {
  .section-fade { height: 90px; }
}
