/* ══════════════════════════════════════════════════════
   private-events.css — Private Events page specific styles
   Desktop/base · Mobile fallback (≤ 767px) · Desktop overrides (≥ 768px)
══════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
/* === PRIVATE EVENTS PAGE === */
/* Page-specific styles. Prefix: pe-. Map: PROJECT_MAP.md · Rules: CLAUDE.md */
.pe-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pe-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pe-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pe-stagger.is-visible { opacity: 1; transform: translateY(0); }
.pe-stagger:nth-child(2) { transition-delay: 90ms; }
.pe-stagger:nth-child(3) { transition-delay: 180ms; }
.pe-stagger:nth-child(4) { transition-delay: 270ms; }


/* ════════════════════════════════════════════
   1. HERO — unified with Menu hero system
════════════════════════════════════════════ */
.pe-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: stretch;
  background: #080202;
  overflow: hidden;
}

/* Photo panel: right 78% — matches Menu hero inset */
.pe-hero-photo {
  position: absolute;
  inset: 80px 0 0 22%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Cinematic vignette — exact Menu hero treatment */
.pe-hero-blend {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      #080202 0%,
      #080202 16%,
      rgba(8,2,2,0.95) 30%,
      rgba(8,2,2,0.78) 44%,
      rgba(8,2,2,0.4) 60%,
      rgba(8,2,2,0.1) 76%,
      transparent 88%
    ),
    linear-gradient(
      to top,
      #080202 0%,
      rgba(8,2,2,0.75) 14%,
      rgba(8,2,2,0.2) 30%,
      transparent 48%
    );
}

/* Inner layout — padding reset to 0 so hero text aligns with the
   brand in the header (same pattern as .mn-hero-inner). */
.pe-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

/* Text block: 52% wide — matches Menu hero */
.pe-hero-content {
  width: min(60%, 660px);
  padding: clamp(10rem, 20vh, 16rem) 0 clamp(3rem, 8vh, 6rem);
}

.pe-hero-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.58);
  margin: 0 0 1.2rem;
}

/* H1 — 10% reduction from original clamp(3rem, 5.5vw, 5.2rem) */
.pe-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.7rem, 4.95vw, 4.68rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--cream, #EFE2CF);
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
.pe-hero-title span { display: block; }

.pe-hero-rule {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(to right, #c9a96e, rgba(201,169,110,0.15));
  margin-bottom: 1.6rem;
}

.pe-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.93rem, 1.5vw, 1.05rem);
  font-style: normal;
  font-weight: 400;
  color: rgba(239,226,207,0.58);
  line-height: 1.74;
  margin: 0;
  max-width: 46ch;
}


/* ════════════════════════════════════════════
   2. EVENT TYPES STRIP
════════════════════════════════════════════ */
.pe-types {
  background: #0a0202;
  padding: 1.5rem 0 3.185rem;
}

.pe-types-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.pe-types-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* прямой ребёнок секции pe-types (во всю ширину hero), без отступов по краям */
  width: 100%;
  margin-bottom: 2.58rem;
}

.pe-types-rule {
  display: block;
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.2));
}
.pe-types-rule:first-child {
  background: linear-gradient(to left, transparent, rgba(201,169,110,0.2));
}

.pe-types-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.52);
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* desktop: ряд типов растянут на ширину hero (без ограничения page-width) */
@media (min-width: 768px) {
  .pe-types-inner {
    max-width: none;
    width: 100%;
    padding-left: clamp(1.375rem, 5.5vw, 5.5rem);
    padding-right: clamp(1.375rem, 5.5vw, 5.5rem);
  }
}

.pe-types-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.575rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pe-types-row li {
  display: flex;
  align-items: center;
}

.pe-type-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.68);
  white-space: nowrap;
  padding: 0 2.4rem;
  transition: color 250ms ease;
}
.pe-type-name:hover { color: rgba(239,226,207,0.95); }

.pe-type-dot {
  display: block;
  width: 1px;
  height: 1rem;
  background: rgba(201,169,110,0.28);
  flex-shrink: 0;
}
.pe-type-dot:last-child { display: none; }


/* ════════════════════════════════════════════
   3. OUR SPACES
════════════════════════════════════════════ */
.pe-spaces {
  background: #080202;
  padding: 0 0 6rem;
}

.pe-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* full-width вариант заголовка: во всю ширину секции, без отступов по краям */
.pe-section-header--full {
  width: 100%;
}

/* «OUR SPACES» — тот же цвет/шрифт/размер, что у «FOR EVERY KIND OF GATHERING» */
.pe-section-header--full .pe-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: rgba(201,169,110,0.52);
}

.pe-section-rule {
  display: block;
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.18));
}
.pe-section-rule.rule-left {
  background: linear-gradient(to left, transparent, rgba(201,169,110,0.18));
}

.pe-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.44);
  white-space: nowrap;
  margin: 0;
}

/* 2-col grid */
.pe-spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.12);
  overflow: hidden;
}

/* desktop: карточки шире — во всю ширину с симметричными отступами как у hero */
@media (min-width: 768px) {
  .pe-spaces-wrap {
    max-width: none;
    width: 100%;
    padding-left: clamp(1.25rem, 5vw, 5rem);
    padding-right: clamp(1.25rem, 5vw, 5rem);
  }
}

.pe-space-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #0a0202;
  cursor: default;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 52%);
}

.pe-space-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(52%, 560px);
  right: 0;
  background-size: cover;
  background-position: center;
  transition: transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pe-space-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left,
      rgba(8,2,2,0.94) 0%,
      rgba(8,2,2,0.28) 28%,
      transparent 58%
    ),
    linear-gradient(to top,
      rgba(8,2,2,0.22) 0%,
      transparent 32%
    ),
    linear-gradient(to bottom,
      rgba(8,2,2,0.26) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.pe-space-card:hover .pe-space-photo {
  transform: scale(1.04);
}

.pe-space-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(8,2,2,0.96) 0%,
      rgba(8,2,2,0.72) 28%,
      rgba(8,2,2,0.32) 55%,
      rgba(8,2,2,0.10) 80%,
      rgba(8,2,2,0.04) 100%
    );
  transition: background 400ms ease;
}
.pe-space-card:hover .pe-space-overlay {
  background:
    linear-gradient(to top,
      rgba(8,2,2,0.92) 0%,
      rgba(8,2,2,0.62) 28%,
      rgba(8,2,2,0.22) 55%,
      rgba(8,2,2,0.06) 80%,
      transparent 100%
    );
}

.pe-space-body {
  position: relative;
  z-index: 2;
  padding: 2.25rem 2.5rem 2.5rem;
}

.pe-space-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream, #EFE2CF);
  margin: 0 0 0.9rem;
  transition: color 280ms ease;
}
.pe-space-card:hover .pe-space-title { color: #c9a96e; }

.pe-space-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(239,226,207,0.58);
  line-height: 1.62;
  margin: 0 0 1.4rem;
  max-width: 34ch;
}

.pe-space-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.6rem;
  margin-bottom: 1.5rem;
}

.pe-space-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.62);
}

.pe-space-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.52);
  text-decoration: none;
  border: 1px solid rgba(239,226,207,0.18);
  padding: 0.55rem 1.1rem;
  transition: color 250ms ease, border-color 250ms ease, background 250ms ease;
}
.pe-space-link:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.05);
}


/* ════════════════════════════════════════════
   4. CURATED EVENT MENUS
════════════════════════════════════════════ */
.pe-menus {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(90,17,26,0.20) 0%, transparent 60%),
    linear-gradient(180deg, #0d0303 0%, #080202 100%);
  padding: 5.5rem 0 6rem;
}

.pe-menus-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pe-menus-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.52);
  margin-bottom: 1rem;
}

.pe-menus-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream, #EFE2CF);
  line-height: 1;
  margin: 0;
}

/* 3-col grid */
.pe-menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.10);
  border: 1px solid rgba(201,169,110,0.10);
  overflow: hidden;
}

/* desktop: блоки меню шире — во всю ширину с боковыми отступами как у hero */
@media (min-width: 768px) {
  .pe-menus-wrap {
    max-width: none;
    width: 100%;
    padding-left: clamp(1.25rem, 5vw, 5rem);
    padding-right: clamp(1.25rem, 5vw, 5rem);
  }
}

.pe-menu-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #0a0202;
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 44%);
}

.pe-menu-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(44%, 441px);
  right: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pe-menu-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left,
      rgba(8,2,2,0.98) 0%,
      rgba(8,2,2,0.32) 16%,
      transparent 42%
    ),
    linear-gradient(to top,
      rgba(8,2,2,0.18) 0%,
      transparent 34%
    ),
    linear-gradient(to bottom,
      rgba(8,2,2,0.20) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.pe-menu-card:hover .pe-menu-photo { transform: scale(1.04); }

.pe-menu-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(8,2,2,0.98) 0%,
      rgba(8,2,2,0.66) 35%,
      rgba(8,2,2,0.38) 60%,
      rgba(8,2,2,0.16) 82%,
      rgba(8,2,2,0.06) 100%
    );
}

.pe-menu-body {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 0 3rem;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pe-menu-footer {
  position: relative;
  z-index: 2;
  grid-column: 1;
  margin-top: auto;
  padding: 1rem 0 1.75rem;
}

.pe-menu-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream, #EFE2CF);
  margin: 0 0 0.75rem;
  transition: color 280ms ease;
}
.pe-menu-card:hover .pe-menu-title { color: #c9a96e; }

.pe-menu-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.96rem;
  font-style: italic;
  color: rgba(239,226,207,0.55);
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.pe-menu-bullets {
  list-style: none;
  margin: 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.pe-menu-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.44);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pe-menu-bullets li::before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1px;
  background: rgba(201,169,110,0.40);
  flex-shrink: 0;
}

/* desktop: текстовый блок уже, чтобы текст не залезал на фото */
@media (min-width: 768px) {
  .pe-menu-body {
    padding-right: 33%;
  }
  /* пункты списка — всегда в одну строку (не переносятся) */
  .pe-menu-bullets li {
    white-space: nowrap;
  }
}

/* Gold footer row */
.pe-menu-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pe-menu-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.72);
}

/* "View Menu" button — same style as .pe-space-link */
.pe-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.52);
  text-decoration: none;
  border: 1px solid rgba(239,226,207,0.18);
  padding: 0.55rem 1.1rem;
  transition: color 250ms ease, border-color 250ms ease, background 250ms ease;
}
.pe-menu-btn:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.05);
}


/* ════════════════════════════════════════════
   5. WINE FEATURE BANNER
════════════════════════════════════════════ */
.pe-wine-banner {
  position: relative;
  min-height: 266px;
  display: flex;
  align-items: center;
  background: #060101;
  overflow: hidden;
}

.pe-wine-photo {
  position: absolute;
  inset: 0 0 0 38%;
  background-size: cover;
  background-position: center 35%;
}

.pe-wine-photo-blend {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #060101 0%,
      #060101 28%,
      rgba(6,1,1,0.92) 40%,
      rgba(6,1,1,0.52) 54%,
      rgba(6,1,1,0.14) 70%,
      transparent 84%
    ),
    linear-gradient(to top,
      rgba(6,1,1,0.42) 0%,
      transparent 40%
    );
}

.pe-wine-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  padding-top: clamp(2.45rem, 5.6vh, 3.85rem);
  padding-bottom: clamp(2.45rem, 5.6vh, 3.85rem);
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: 0;
}

.pe-wine-content {
  width: min(46%, 500px);
}

.pe-wine-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--cream, #EFE2CF);
  text-transform: uppercase;
  margin: 0 0 1.3rem;
}
.pe-wine-title span { display: block; }

.pe-wine-rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, #c9a96e, rgba(201,169,110,0.12));
  margin-bottom: 1.3rem;
}

.pe-wine-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.96rem, 1.45vw, 1.10rem);
  font-style: italic;
  color: rgba(239,226,207,0.58);
  line-height: 1.68;
  margin: 0 0 1.8rem;
}

.pe-text-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.62);
  text-decoration: none;
  transition: color 250ms ease;
}
.pe-text-link:hover { color: #c9a96e; }


/* ════════════════════════════════════════════
   6. PATIO FEATURE BANNER
════════════════════════════════════════════ */
.pe-patio-banner {
  position: relative;
  min-height: 238px;
  display: flex;
  align-items: center;
  background: #060101;
  overflow: hidden;
}

.pe-patio-photo {
  position: absolute;
  inset: 0 0 0 42%;
  background-size: cover;
  background-position: center 40%;
}

.pe-patio-photo-blend {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #060101 0%,
      #060101 30%,
      rgba(6,1,1,0.90) 42%,
      rgba(6,1,1,0.48) 56%,
      rgba(6,1,1,0.12) 72%,
      transparent 88%
    ),
    linear-gradient(to top,
      rgba(6,1,1,0.38) 0%,
      transparent 38%
    );
}

.pe-patio-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  padding-top: clamp(2.1rem, 4.9vh, 3.5rem);
  padding-bottom: clamp(2.1rem, 4.9vh, 3.5rem);
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: 0;
}

.pe-patio-content {
  width: min(44%, 480px);
}

.pe-patio-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.52);
  margin-bottom: 0.9rem;
}

.pe-patio-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--cream, #EFE2CF);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.pe-patio-rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, #c9a96e, rgba(201,169,110,0.12));
  margin-bottom: 1rem;
}

.pe-patio-body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-style: italic;
  color: rgba(239,226,207,0.55);
  line-height: 1.68;
  margin: 0 0 1.6rem;
}


/* ════════════════════════════════════════════
   7. FINAL CTA BLOCK
════════════════════════════════════════════ */
.pe-cta {
  background: #080202;
  padding: 4.92rem 0;
}

.pe-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 0;
}


.pe-cta-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream, #EFE2CF);
  line-height: 1.02;
  margin: 0;
}
.pe-cta-heading em {
  font-style: italic;
  color: rgba(239,226,207,0.78);
}

.pe-cta-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.96rem, 1.4vw, 1.10rem);
  font-style: italic;
  color: rgba(239,226,207,0.52);
  line-height: 1.6;
  margin: 0;
}

.pe-cta-right {
  flex-shrink: 0;
}

/* Gold-outline button style for CTA */
.button-pe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201,169,110,0.45);
  background: transparent;
  color: rgba(239,226,207,0.80);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}
.button-pe:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.72);
  background: rgba(201,169,110,0.06);
  box-shadow: 0 0 28px rgba(201,169,110,0.08);
}


/* ════════════════════════════════════════════
   MOBILE  (≤ 767px)
════════════════════════════════════════════ */
/* === MOBILE: PRIVATE EVENTS === */
/* NAV-INDEX (sub-sections top->bottom): Hero | Event types | Spaces | Menus | Wine banner | Patio banner | Final CTA */
@media (max-width: 767px) {

  /* Hero */
  .pe-hero {
    min-height: 62svh;
    max-height: none;
    height: auto;
    align-items: center;
  }

  .pe-hero-photo {
    inset: 0 0 0 30%;
    background-position: center center;
  }

  .pe-hero-blend {
    background:
      linear-gradient(to right,
        rgba(8,2,2,0.95) 0%,
        rgba(8,2,2,0.90) 25%,
        rgba(8,2,2,0.72) 38%,
        rgba(8,2,2,0.38) 52%,
        rgba(8,2,2,0.10) 66%,
        transparent 80%
      ),
      linear-gradient(to bottom,
        rgba(8,2,2,0.80) 0%,
        rgba(8,2,2,0.30) 16%,
        transparent 34%
      ),
      linear-gradient(to top,
        #080202 0%,
        rgba(8,2,2,0.97) 18%,
        rgba(8,2,2,0.72) 38%,
        rgba(8,2,2,0.30) 62%,
        transparent 78%
      );
  }

  .pe-hero-inner {
    width: 100%;
    padding: 0 1.25rem;
    align-items: flex-start;
  }

  .pe-hero-content {
    width: 58%;
    padding: 2rem 0 1.5rem;
  }

  .pe-hero-eyebrow { display: none; }

  .pe-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 7vw;
  }

  .pe-hero-sub {
    font-size: 1.12rem;
    line-height: 1.72;
    max-width: 18rem;
    margin-bottom: 7vw;
    color: rgba(239,226,207,0.82);
    text-shadow: 0 1px 12px rgba(0,0,0,0.65), 0 2px 28px rgba(0,0,0,0.45);
  }

  /* Event types */
  .pe-types { padding: 2.25rem 0; }

  .pe-types-row {
    flex-wrap: wrap;
    gap: 0.75rem 0;
    padding: 0 1rem;
  }

  .pe-type-name {
    font-size: 0.72rem;
    padding: 0.25rem 0.85rem;
  }

  .pe-type-dot { display: none; }

  /* Spaces */
  .pe-spaces { padding: 3.5rem 0 4rem; }

  .pe-spaces-grid {
    grid-template-columns: 1fr;
  }

  .pe-space-card,
  .pe-menu-card {
    display: block;
  }

  .pe-space-photo,
  .pe-menu-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 48vw;
  }

  .pe-space-card { min-height: 360px; }
  .pe-space-body { padding: 1.75rem 1.5rem 2rem; }
  .pe-space-desc { font-size: 0.97rem; }

  /* Menus */
  .pe-menus { padding: 3.5rem 0 4rem; }

  .pe-menus-grid {
    grid-template-columns: 1fr;
  }

  .pe-menu-card { min-height: 380px; }
  .pe-menu-body { padding: 1.5rem 1.5rem 0; }
  .pe-menu-footer { padding: 1rem 1.5rem 1.5rem; }

  /* Wine banner */
  .pe-wine-banner {
    min-height: auto;
    flex-direction: column;
  }

  .pe-wine-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 52vw;
    order: 2;
  }

  .pe-wine-photo-blend {
    background:
      linear-gradient(to top,
        rgba(6,1,1,0.65) 0%,
        rgba(6,1,1,0.18) 55%,
        transparent 100%
      );
  }

  .pe-wine-inner {
    order: 1;
    padding: 3rem 1.5rem 2rem;
    width: 100%;
  }

  .pe-wine-content { width: 100%; }

  .pe-wine-title {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  /* Patio banner */
  .pe-patio-banner {
    min-height: auto;
    flex-direction: column;
  }

  .pe-patio-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 48vw;
    order: 2;
  }

  .pe-patio-photo-blend {
    background:
      linear-gradient(to top,
        rgba(6,1,1,0.60) 0%,
        rgba(6,1,1,0.15) 55%,
        transparent 100%
      );
  }

  .pe-patio-inner {
    order: 1;
    padding: 3rem 1.5rem 2rem;
    width: 100%;
  }

  .pe-patio-content { width: 100%; }

  /* Final CTA */
  .pe-cta { padding: 3rem 0; }

  .pe-cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .pe-cta-heading { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  .button-pe { width: 100%; justify-content: center; }

} /* end mobile */


/* ════════════════════════════════════════════
   DESKTOP  (≥ 768px)  fine-tuning
════════════════════════════════════════════ */
@media (min-width: 768px) {

  /* 2-col spaces already set above as default */

  /* ── Desktop typography normalization — reference: hero body text ── */
  /* .pe-hero-sub already matches the reference exactly (clamp/1.74/38ch/0.58) */

  /* CTA sub-copy: normalize from Cormorant italic → Inter regular for consistency */
  .pe-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.93rem, 1.5vw, 1.05rem);
    font-style: normal;
    font-weight: 400;
    color: rgba(239,226,207,0.58);
    line-height: 1.74;
    max-width: 60ch;
  }

} /* end desktop */


/* ════════════════════════════════════════════
   WIDE DESKTOP  (≥ 1100px)
════════════════════════════════════════════ */
@media (min-width: 1100px) {

  /* Wide desktop H1 — 10% reduction from original clamp(4rem, 5.5vw, 5.2rem) */
  .pe-hero-title {
    font-size: clamp(3.6rem, 4.95vw, 4.68rem);
  }

} /* end wide desktop */


/* ════════════════════════════════════════════
   PRIVATE EVENTS — INQUIRY MODAL
   (own component; mirrors catering modal behaviour)
════════════════════════════════════════════ */
.pe-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4,1,1,0.74);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.pe-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.pe-modal {
  position: relative;
  display: flex;
  width: min(1200px, 96vw);
  max-height: 90vh;
  overflow: hidden;
  background: linear-gradient(180deg, #0c0303 0%, #080202 100%);
  border: 1px solid rgba(201,169,110,0.16);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  transform: translateY(16px) scale(0.985);
  transition: transform 380ms cubic-bezier(0.22,0.61,0.36,1);
}
.pe-modal-overlay.is-open .pe-modal {
  transform: none;
}

.pe-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  z-index: 5;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,2,2,0.45);
  border: 1px solid rgba(201,169,110,0.22);
  color: rgba(239,226,207,0.72);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.pe-modal-close:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.5);
  background: rgba(90,17,26,0.35);
}

/* Left photo panel (45%) */
.pe-modal-aside {
  position: relative;
  flex: 0 0 45%;
  overflow: hidden;
  display: flex;
}
.pe-modal-aside-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.pe-modal-aside-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,2,2,0.45) 0%, rgba(8,2,2,0.82) 100%),
    linear-gradient(to right, rgba(46,8,16,0.45), rgba(8,2,2,0.80));
}
.pe-modal-aside-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: clamp(2.5rem, 4vh, 4rem) clamp(1.8rem, 2.4vw, 2.6rem) clamp(2.5rem, 4vh, 4rem) clamp(3.2rem, 4.5vw, 5rem);
}

.pe-modal-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.78);
  display: block;
  margin-bottom: 1.1rem;
}
.pe-modal-aside-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 3.4vw, 3.6rem);
  line-height: 1.04;
  color: var(--cream, #EFE2CF);
  margin: 0 0 1.3rem;
}
.pe-modal-aside-title span { display: block; }
.pe-modal-aside-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.58;
  color: rgba(239,226,207,0.62);
  margin: 0;
  max-width: 42ch;
}
.pe-modal-perks {
  list-style: none;
  margin: 2.3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}
.pe-modal-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(239,226,207,0.64);
}
.pe-modal-perks svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #c9a96e;
  flex-shrink: 0;
}

/* Right form panel (55%) */
.pe-modal-main {
  flex: 1 1 55%;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: clamp(2.2rem, 3vw, 3.2rem);
}
.pe-modal-header {
  margin-bottom: 1.7rem;
}
.pe-modal-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  color: var(--cream, #EFE2CF);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}
.pe-modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  line-height: 1.5;
  color: rgba(239,226,207,0.5);
  margin: 0;
}

.pe-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.4rem;
  align-items: start;
  margin-bottom: 1.7rem;
}
.pe-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
/* full-width поле (Email, Notes) */
.pe-field--full { grid-column: 1 / -1; }

.pe-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-cream, #c9b79a);
}
.pe-field input,
.pe-field select,
.pe-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light, #EFE2CF);
  background: rgba(239,226,207,0.05);
  border: 1px solid rgba(201,169,110,0.22);  /* золотая обводка — оставлена */
  border-radius: 0;
  padding: 0.72rem 0.9rem;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.pe-field input::placeholder,
.pe-field textarea::placeholder {
  color: rgba(244,235,217,0.28);
}
.pe-field input:focus,
.pe-field select:focus,
.pe-field textarea:focus {
  outline: none;
  border-color: rgba(201,169,110,0.6);
  background: rgba(90,17,26,0.14);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.1), 0 0 18px rgba(90,17,26,0.32);
}
.pe-field textarea {
  min-height: 6.4rem;
  resize: vertical;
  line-height: 1.5;
}
.pe-field select {
  cursor: pointer;
  padding-right: 1.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a96e' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 0.62rem;
}
.pe-field select option {
  background: #2E0810;
  color: var(--text-light, #EFE2CF);
}
.pe-field input[type="date"] { cursor: pointer; }
.pe-field input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
/* убрать бело-серые стрелки-спиннеры у number-поля */
.pe-field input[type="number"]::-webkit-inner-spin-button,
.pe-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pe-field input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.pe-modal-form .field-error {
  border-color: rgba(176,42,42,0.85) !important;
  box-shadow: 0 0 0 2px rgba(176,42,42,0.18);
}

/* ── Custom themed select (Event Type) — dark/gold, no native blue ── */
.pe-select { position: relative; }
.pe-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light, #EFE2CF);
  background: rgba(239,226,207,0.05);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 0;
  padding: 0.72rem 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.pe-select-btn:focus-visible { outline: none; border-color: rgba(201,169,110,0.6); }
.pe-select.is-open .pe-select-btn {
  border-color: rgba(201,169,110,0.6);
  background: rgba(90,17,26,0.14);
}
.pe-select-value.is-placeholder { color: rgba(244,235,217,0.32); }
.pe-select-arrow {
  width: 0.62rem;
  height: 0.62rem;
  flex-shrink: 0;
  color: #c9a96e;
  transition: transform 200ms ease;
}
.pe-select.is-open .pe-select-arrow { transform: rotate(180deg); }

.pe-select-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  max-height: 190px;
  overflow-y: auto;
  background: #1a0508;
  border: 1px solid rgba(201,169,110,0.22);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.pe-select-menu[hidden] { display: none; }
.pe-select-opt {
  padding: 0.5rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: rgba(239,226,207,0.82);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.pe-select-opt:hover,
.pe-select-opt.is-active {
  background: rgba(90,17,26,0.55);
  color: #c9a96e;
}

.pe-modal-submit {
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid var(--burgundy, #5A111A);
  background: var(--burgundy, #5A111A);
  color: var(--cream, #EFE2CF);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.pe-modal-submit:hover {
  background: #6e1622;
  border-color: #6e1622;
  box-shadow: 0 8px 30px rgba(90,17,26,0.45), 0 0 0 1px rgba(201,169,110,0.15);
}

.pe-modal-success {
  margin: auto;
  text-align: center;
  padding: 2.5rem 1rem;
}
.pe-success-check {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.5);
  color: #c9a96e;
}
.pe-modal-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--cream, #EFE2CF);
  margin: 0 0 0.6rem;
}
.pe-modal-success p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(239,226,207,0.5);
  margin: 0;
}

/* Modal — mobile: single column, photo on top */
@media (max-width: 767px) {
  .pe-modal-overlay { padding: 0.9rem; }
  .pe-modal {
    flex-direction: column;
    width: 94vw;
    max-height: 92vh;
  }
  .pe-modal-aside {
    flex: 0 0 auto;
    min-height: 168px;
    max-height: 200px;
  }
  .pe-modal-aside-content { justify-content: flex-end; }
  .pe-modal-perks { display: none; }
  .pe-modal-main { flex: 1 1 auto; }
  .pe-modal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
