
  :root {
    --bg:       #F5F0E8;
    --bg2:      #EDE7DC;
    --bg3:      #E4DDD1;
    --surface:  #FDFAF5;
    --surface2: #F5F0E8;
    --ink:      #1C1710;
    --ink2:     #3A3228;
    --muted:    #8A7E6E;
    --muted2:   #B0A898;
    --chili:    #C93B1E;
    --chili2:   #E04D2A;
    --gold:     #B8872A;
    --gold-bg:  rgba(184,135,42,0.1);
    --border:   rgba(28,23,16,0.1);
    --border2:  rgba(28,23,16,0.2);
  }

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

  body {
    font-family:'Source Sans 3', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top:0; left:0; right:0;
    z-index:100;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 18px 48px;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family:'Lora', serif;
    font-size:20px; font-weight:400;
    letter-spacing:0.01em;
    color: var(--ink);
    text-decoration:none;
  }
  .nav-logo span { color: var(--chili); font-style:italic; }

  .nav-links { display:flex; gap:32px; list-style:none; }
  .nav-links a {
    font-size:12px; font-weight:400;
    letter-spacing:0.08em; text-transform:uppercase;
    color: var(--muted); text-decoration:none;
    transition:color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .nav-cta {
    font-size:12px; font-weight:500;
    letter-spacing:0.1em; text-transform:uppercase;
    color: #fff;
    background: var(--chili);
    padding:10px 22px; border-radius:2px;
    text-decoration:none; transition:background 0.2s;
  }
  .nav-cta:hover { background: var(--chili2); }

  /* ─── HERO ─── */
  #hero {
    min-height:100vh;
    display:flex; flex-direction:column; justify-content:flex-end;
    padding: 0 48px 80px;
    position:relative; overflow:hidden;
    background: var(--ink);
  }

  .hero-bg {
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse 55% 50% at 72% 38%, rgba(201,59,30,0.18) 0%, transparent 65%),
      radial-gradient(ellipse 40% 55% at 18% 65%, rgba(184,135,42,0.1) 0%, transparent 65%);
  }

  .hero-grain {
    position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    opacity:0.5; pointer-events:none;
  }

  .hero-lines {
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
  }

  .hero-ep {
    position:absolute; top:120px; right:48px;
    font-size:11px; letter-spacing:0.15em; text-transform:uppercase;
    color: rgba(255,255,255,0.3); text-align:right; line-height:2;
  }
  .hero-ep strong {
    display:block;
    font-family:'Lora', serif;
    font-size:13px; font-weight:400; font-style:italic;
    color: rgba(255,255,255,0.55); letter-spacing:0.03em;
    text-transform:none; margin-top:4px;
  }

  .hero-eyebrow {
    position:relative;
    font-size:11px; letter-spacing:0.22em; text-transform:uppercase;
    color: var(--chili); margin-bottom:22px;
    display:flex; align-items:center; gap:12px;
  }
  .hero-eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--chili); }

  .hero-title {
    position:relative;
    font-family:'Lora', serif;
    font-size:clamp(54px, 7.5vw, 104px);
    font-weight:900; line-height:0.93;
    letter-spacing:-0.02em;
    margin-bottom:38px; max-width:780px;
    color:#F5F0E8;
  }
  .hero-title em { font-style:italic; color: var(--gold); }

  .hero-sub {
    position:relative;
    font-size:16px; font-weight:300; line-height:1.75;
    color: rgba(245,240,232,0.65);
    max-width:460px; margin-bottom:44px;
  }

  .hero-actions { position:relative; display:flex; gap:16px; align-items:center; }

  .btn-chili {
    font-size:12px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
    color:#fff; background:var(--chili);
    padding:15px 34px; border-radius:2px;
    text-decoration:none; display:inline-block;
    transition:background 0.2s;
  }
  .btn-chili:hover { background:var(--chili2); }

  .btn-text {
    font-size:12px; font-weight:400; letter-spacing:0.1em; text-transform:uppercase;
    color:rgba(245,240,232,0.5); text-decoration:none;
    display:flex; align-items:center; gap:8px; transition:color 0.2s;
  }
  .btn-text:hover { color:rgba(245,240,232,0.85); }
  .btn-text::after { content:'↓'; font-size:14px; }

  .hero-stats {
    position:absolute; bottom:80px; right:48px;
    display:flex; gap:40px;
  }
  .hero-stat { text-align:right; }
  .hero-stat-n {
    font-family:'Lora', serif;
    font-size:36px; font-weight:700; color:#F5F0E8; line-height:1; margin-bottom:4px;
  }
  .hero-stat-l { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(245,240,232,0.3); }

  /* ─── SECTIONS SHARED ─── */
  section { padding:120px 48px; }

  .section-label {
    font-size:11px; letter-spacing:0.22em; text-transform:uppercase;
    color:var(--chili); margin-bottom:14px;
    display:flex; align-items:center; gap:10px;
  }
  .section-label::before { content:''; display:block; width:22px; height:1px; background:var(--chili); }

  .section-title {
    font-family:'Lora', serif;
    font-size:clamp(34px, 4.5vw, 56px);
    font-weight:700; line-height:1.06; letter-spacing:-0.01em; margin-bottom:24px;
    color: var(--ink);
  }
  .section-title em { font-style:italic; color:var(--chili); }

  /* ─── CONCEPT ─── */
  #concept { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

  .concept-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:80px;
    align-items:center; max-width:1200px; margin:0 auto;
  }

  .concept-left p { font-size:17px; font-weight:300; line-height:1.85; color:var(--ink2); margin-bottom:18px; }
  .concept-left p strong { color:var(--ink); font-weight:500; }

  .concept-pillars { margin-top:36px; }

  .pillar { display:flex; align-items:flex-start; gap:18px; padding:22px 0; border-top:1px solid var(--border); }
  .pillar-n { font-family:'Lora', serif; font-size:11px; color:var(--muted2); min-width:22px; padding-top:2px; }
  .pillar-title { font-size:15px; font-weight:500; margin-bottom:5px; color:var(--ink); }
  .pillar-desc { font-size:13px; font-weight:300; line-height:1.6; color:var(--muted); }

  .concept-visual {
    background:var(--bg2);
    border:1px solid var(--border);
    border-radius:4px; padding:40px; position:relative; overflow:hidden;
  }
  .concept-visual::before {
    content:''; position:absolute; top:-40px; right:-40px;
    width:180px; height:180px;
    background:radial-gradient(circle, rgba(201,59,30,0.08) 0%, transparent 70%);
  }

  .cv-label { font-size:11px; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); margin-bottom:28px; }

  .cv-step { display:flex; gap:14px; position:relative; }
  .cv-step:not(:last-child)::after {
    content:''; position:absolute; left:13px; top:32px; bottom:-10px;
    width:1px; background:var(--border2);
  }
  .cv-dot {
    width:28px; height:28px; border-radius:50%;
    border:1px solid rgba(201,59,30,0.25);
    display:flex; align-items:center; justify-content:center;
    font-family:'Lora', serif; font-size:11px; color:var(--chili);
    flex-shrink:0; background:var(--surface);
  }
  .cv-text { padding-top:3px; padding-bottom:26px; }
  .cv-text strong { display:block; font-size:14px; font-weight:500; color:var(--ink); margin-bottom:3px; }
  .cv-text span { font-size:12px; font-weight:300; color:var(--muted); line-height:1.5; }

  /* ─── PLACES ─── */
  #places { background:var(--bg); }

  .places-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:52px; max-width:1200px; margin-left:auto; margin-right:auto; }
  .places-header-left { max-width:560px; }

  .places-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; max-width:1200px; margin-left:auto; margin-right:auto; }

  .filter-btn {
    font-size:11px; font-weight:400; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--muted); background:transparent;
    border:1px solid var(--border2); padding:7px 16px; border-radius:2px;
    cursor:pointer; transition:all 0.2s;
  }
  .filter-btn:hover { color:var(--ink); border-color:var(--ink2); }
  .filter-btn.active { border-color:var(--chili); color:var(--chili); background:rgba(201,59,30,0.06); }
  .filter-btn-featured {
    padding:9px 20px;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.12em;
  }

  .places-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; max-width:1200px; margin:0 auto; }

  .place-card {
    background:var(--surface);
    cursor:pointer; transition:background 0.2s;
    position:relative; overflow:hidden; display:none;
    border:1px solid var(--border);
  }
  .place-card.visible { display:block; }
  .place-card:hover { background:var(--bg2); }

  /* Cover снимка — 1:1 квадрат */
  .place-card-cover-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .place-card-cover {
    width: 100%; height: 100%;
    background: var(--bg3) center/cover no-repeat;
    transition: transform 0.4s ease;
  }
  .place-card:hover .place-card-cover { transform: scale(1.03); }

  /* Placeholder за места без снимка */
  .place-card-cover--empty {
    background-color: var(--bg3) !important;
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .place-card-cover--empty::after {
    content: 'дроб & чили';
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: 0.04em;
  }

  /* Body под снимката */
  .place-card-body { padding:24px 28px 28px; }
  .place-card:not(:has(.place-card-cover-wrap)) .place-card-body { padding:32px; }

  .place-card::before {
    content:''; position:absolute; top:0; left:0;
    width:3px; height:0; background:var(--chili);
    transition:height 0.3s;
  }
  .place-card:hover::before { height:100%; }

  .place-city { font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:var(--muted2); margin-bottom:10px; }
  .place-name { font-family:'Lora', serif; font-size:21px; font-weight:700; color:var(--ink); margin-bottom:6px; line-height:1.2; }
  .place-type { font-size:12px; font-weight:300; color:var(--muted); margin-bottom:18px; font-style:italic; }

  .place-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:18px; }
  .place-tag { font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); background:var(--gold-bg); padding:3px 9px; border-radius:2px; }
  .place-tag.red { color:var(--chili); background:rgba(201,59,30,0.08); }

  .place-source-badge {
    font-size:10px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:#fff;
    background:var(--chili);
    padding:4px 9px;
    border-radius:2px;
    display:inline-flex;
    align-items:center;
    line-height:1;
  }

  .place-ep { font-size:11px; color:var(--muted2); display:flex; align-items:center; gap:8px; margin-top:14px; padding-top:14px; border-top:1px solid var(--border); }
  .place-ep::before { content:''; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--muted2); flex-shrink:0; }
  .place-ep a { color:var(--chili); text-decoration:none; font-size:11px; }
  .place-ep a:hover { text-decoration:underline; }

  .place-card-link { margin-top:14px; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--chili); }

  .places-pagination {
    max-width:1200px; margin:28px auto 0;
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    padding-top:6px;
  }
  .places-pagination[hidden] { display:none !important; }
  .places-pagination-meta { font-size:12px; color:var(--muted); }
  .places-load-more {
    font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
    color:#fff; background:var(--chili); border:1px solid var(--chili);
    padding:12px 20px; border-radius:2px; cursor:pointer; transition:all 0.2s;
  }
  .places-load-more:hover { background:var(--chili2); border-color:var(--chili2); }
  .places-load-more[hidden] { display:none !important; }

  /* ─── PLANNER ─── */
  #planner { background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

  .planner-wrap { max-width:1000px; margin:0 auto; }
  .planner-intro { font-size:16px; font-weight:300; line-height:1.8; color:var(--ink2); margin-bottom:52px; max-width:580px; }

  .quiz-container { background:var(--surface); border:1px solid var(--border2); border-radius:4px; overflow:hidden; }
  .quiz-progress { height:3px; background:var(--border); }
  .quiz-progress-bar { height:100%; background:var(--chili); transition:width 0.4s ease; }
  .quiz-inner { padding:48px; }
  .quiz-step { display:none; }
  .quiz-step.active { display:block; }
  .quiz-q-label { font-size:11px; letter-spacing:0.15em; text-transform:uppercase; color:var(--muted); margin-bottom:14px; }
  .quiz-question { font-family:'Lora', serif; font-size:28px; font-weight:700; line-height:1.2; margin-bottom:32px; color:var(--ink); }

  .quiz-options { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
  .quiz-option {
    background:var(--bg); border:1px solid var(--border2); border-radius:2px;
    padding:18px 22px; cursor:pointer; transition:all 0.2s; text-align:left;
  }
  .quiz-option:hover { border-color:var(--ink2); background:var(--bg2); }
  .quiz-option.selected { border-color:var(--chili); background:rgba(201,59,30,0.05); }
  .quiz-option-title { font-size:15px; font-weight:500; color:var(--ink); margin-bottom:3px; }
  .quiz-option-sub { font-size:12px; font-weight:300; color:var(--muted); line-height:1.4; }

  .quiz-nav { display:flex; justify-content:space-between; align-items:center; margin-top:36px; padding-top:22px; border-top:1px solid var(--border); }
  .quiz-back { font-size:12px; font-weight:400; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); background:none; border:none; cursor:pointer; transition:color 0.2s; }
  .quiz-back:hover { color:var(--ink); }
  .quiz-next { font-size:12px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:#fff; background:var(--chili); border:none; padding:13px 30px; border-radius:2px; cursor:pointer; transition:background 0.2s; }
  .quiz-next:hover { background:var(--chili2); }
  .quiz-next:disabled { opacity:0.3; cursor:default; }

  .quiz-result { display:none; }
  .quiz-result.active { display:block; }
  .result-title { font-family:'Lora', serif; font-size:32px; font-weight:700; margin-bottom:10px; line-height:1.1; color:var(--ink); }
  .result-sub { font-size:14px; font-weight:300; color:var(--muted); line-height:1.6; margin-bottom:28px; }

  .result-places { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-bottom:28px; }
  .result-place { background:var(--bg); border:1px solid var(--border2); border-radius:2px; padding:22px; position:relative; }
  .result-place-n { font-family:'Lora', serif; font-size:11px; color:var(--muted2); margin-bottom:7px; }
  .result-place-name { font-family:'Lora', serif; font-size:17px; font-weight:700; color:var(--ink); margin-bottom:3px; }
  .result-place-city { font-size:12px; color:var(--muted); margin-bottom:10px; }
  .result-place-why { font-size:12px; font-weight:300; color:var(--ink2); line-height:1.5; font-style:italic; }
  .result-place-match { position:absolute; top:14px; right:14px; font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--chili); background:rgba(201,59,30,0.08); padding:2px 7px; border-radius:2px; }

  .result-cta { display:flex; gap:10px; flex-wrap:wrap; }
  .btn-outline { font-size:12px; font-weight:400; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); background:none; border:1px solid var(--border2); padding:13px 26px; border-radius:2px; cursor:pointer; transition:all 0.2s; }
  .btn-outline:hover { color:var(--ink); border-color:var(--ink2); }
  .btn-gold { font-size:12px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:#fff; background:var(--gold); border:none; padding:13px 26px; border-radius:2px; cursor:pointer; transition:background 0.2s; }
  .btn-gold:hover { background: #9A6E1E; }

  /* ─── MAP ─── */
  #map-section { background:var(--bg3); padding-bottom:0; border-top:1px solid var(--border); }

  .map-header { max-width:1200px; margin:0 auto 40px; display:flex; justify-content:space-between; align-items:flex-end; }

  .map-container { position:relative; background:#1C1A16; overflow:hidden; }

  .map-legend {
    position:absolute; top:28px; right:28px;
    background:rgba(28,26,22,0.92); border:1px solid rgba(255,255,255,0.1);
    padding:14px 18px; border-radius:2px; z-index:10; pointer-events:none;
  }
  .map-legend-title { font-size:10px; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:10px; }
  .legend-item { display:flex; align-items:center; gap:8px; margin-bottom:7px; }
  .legend-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
  .legend-label { font-size:11px; color:rgba(255,255,255,0.6); }

  .map-tooltip {
    position:absolute;
    background:rgba(28,23,16,0.96); border:1px solid rgba(184,135,42,0.3);
    padding:12px 16px; border-radius:2px; pointer-events:none;
    opacity:0; transition:opacity 0.12s; z-index:20; min-width:170px;
  }
  .map-tooltip.visible { opacity:1; }
  .tt-name { font-family:'Lora', serif; font-size:14px; font-weight:700; color:#F5F0E8; margin-bottom:3px; }
  .tt-city { font-size:11px; color:rgba(245,240,232,0.45); margin-bottom:7px; }
  .tt-tag { font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold); background:rgba(184,135,42,0.15); padding:2px 7px; border-radius:2px; display:inline-block; }

  /* ─── КОЗУНАЦИ ─── */
  #kozunaci { background:var(--surface); border-top:1px solid var(--border); position:relative; overflow:hidden; }
  #kozunaci::before {
    content:''; position:absolute; top:-80px; right:-80px;
    width:420px; height:420px;
    background:radial-gradient(circle, rgba(201,59,30,0.06) 0%, transparent 70%);
    pointer-events:none;
  }

  .koz-wrap { max-width:1200px; margin:0 auto; }

  .koz-top { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; margin-bottom:72px; }

  .koz-left p { font-size:16px; font-weight:300; line-height:1.85; color:var(--ink2); margin-bottom:16px; }

  .koz-meta { display:flex; flex-direction:column; gap:0; margin-top:28px; }
  .koz-meta-item {
    display:flex; align-items:flex-start; gap:14px;
    padding:16px 0; border-top:1px solid var(--border);
    font-size:14px; color:var(--ink2);
  }
  .koz-meta-item:last-child { border-bottom:1px solid var(--border); }

  /* Simple text icon — no emoji */
  .koz-icon {
    width:28px; height:28px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    border:1px solid var(--border2); border-radius:2px;
    font-family:'Lora', serif; font-style:italic;
    font-size:13px; color:var(--chili); margin-top:1px;
  }

  .koz-tickets { display:flex; flex-direction:column; gap:10px; }

  .ticket-card {
    background:var(--bg); border:1px solid var(--border2); border-radius:3px;
    padding:24px 28px; display:flex; align-items:center; justify-content:space-between;
    gap:20px; transition:all 0.2s; cursor:pointer; position:relative; overflow:hidden;
  }
  .ticket-card::before {
    content:''; position:absolute; left:0; top:0; bottom:0;
    width:3px; background:transparent; transition:background 0.2s;
  }
  .ticket-card:hover { background:var(--bg2); border-color:var(--border2); }
  .ticket-card:hover::before { background:var(--chili); }
  .ticket-card.sold-out { opacity:0.45; cursor:default; }
  .ticket-card.sold-out:hover { background:var(--bg); }
  .ticket-card.sold-out:hover::before { background:transparent; }

  .ticket-badge { font-size:10px; letter-spacing:0.12em; text-transform:uppercase; padding:3px 9px; border-radius:2px; font-weight:500; }
  .badge-early { color:var(--muted); background:rgba(28,23,16,0.06); }
  .badge-standard { color:var(--chili); background:rgba(201,59,30,0.08); }
  .badge-late { color:var(--gold); background:var(--gold-bg); }

  .ticket-info { flex:1; }
  .ticket-type { font-family:'Lora', serif; font-size:20px; font-weight:700; color:var(--ink); margin-bottom:3px; }
  .ticket-desc { font-size:13px; font-weight:300; color:var(--muted); }

  .ticket-price-wrap { text-align:right; }
  .ticket-price { font-family:'Lora', serif; font-size:30px; font-weight:700; color:var(--ink); line-height:1; }
  .ticket-price sup { font-size:13px; font-weight:400; color:var(--muted); vertical-align:super; }
  .ticket-avail { font-size:11px; color:var(--muted2); margin-top:3px; }

  .ticket-btn {
    font-size:12px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
    color:#fff; background:var(--chili); border:none;
    padding:11px 22px; border-radius:2px; cursor:pointer;
    transition:background 0.2s; white-space:nowrap; flex-shrink:0;
  }
  .ticket-btn:hover { background:var(--chili2); }
  .ticket-btn.disabled { background:var(--muted2); color:#fff; cursor:default; }

  /* Checkout */
  .checkout-overlay {
    position:fixed; inset:0;
    background:rgba(28,23,16,0.7); z-index:200;
    display:none; align-items:center; justify-content:center;
    backdrop-filter:blur(4px);
  }
  .checkout-overlay.open { display:flex; }

  .checkout-modal {
    background:var(--surface); border:1px solid var(--border2); border-radius:4px;
    width:100%; max-width:510px; margin:20px; overflow:hidden;
    box-shadow: 0 24px 64px rgba(28,23,16,0.25);
  }

  .checkout-header {
    padding:28px 32px 22px; border-bottom:1px solid var(--border);
    display:flex; justify-content:space-between; align-items:flex-start;
  }
  .checkout-title { font-family:'Lora', serif; font-size:22px; font-weight:700; color:var(--ink); }
  .checkout-subtitle { font-size:13px; color:var(--muted); margin-top:3px; }
  .checkout-close { background:none; border:none; color:var(--muted); font-size:18px; cursor:pointer; padding:4px; line-height:1; transition:color 0.2s; }
  .checkout-close:hover { color:var(--ink); }

  .checkout-body { padding:28px 32px; }

  .checkout-summary {
    background:var(--bg2); border:1px solid var(--border); border-radius:2px;
    padding:18px 22px; margin-bottom:24px;
    display:flex; justify-content:space-between; align-items:center;
  }
  .cs-label { font-size:13px; color:var(--ink2); }
  .cs-label strong { display:block; font-size:15px; color:var(--ink); font-weight:500; margin-bottom:2px; }
  .cs-price { font-family:'Lora', serif; font-size:26px; font-weight:700; color:var(--chili); }
  .cs-price sup { font-size:13px; font-weight:400; color:var(--muted); vertical-align:super; }

  .checkout-field { margin-bottom:18px; }
  .checkout-field label { display:block; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-bottom:7px; }
  .checkout-field input {
    width:100%; background:var(--bg); border:1px solid var(--border2); border-radius:2px;
    padding:11px 14px; font-size:14px; color:var(--ink);
    font-family:'Source Sans 3', sans-serif; outline:none; transition:border-color 0.2s;
  }
  .checkout-field input:focus { border-color:var(--chili); }
  .checkout-field input::placeholder { color:var(--muted2); }
  .checkout-field-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }

  .checkout-card-icons { display:flex; gap:6px; margin-bottom:18px; }
  .card-icon {
    background:var(--bg2); border:1px solid var(--border);
    border-radius:2px; padding:4px 10px;
    font-size:10px; letter-spacing:0.05em; text-transform:uppercase; color:var(--muted);
  }

  .checkout-pay {
    width:100%; font-size:13px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
    color:#fff; background:var(--chili); border:none;
    padding:16px; border-radius:2px; cursor:pointer; transition:background 0.2s; margin-top:6px;
  }
  .checkout-pay:hover { background:var(--chili2); }
  .checkout-note { font-size:11px; color:var(--muted2); text-align:center; margin-top:10px; line-height:1.5; }

  .checkout-success { display:none; padding:44px 32px; text-align:center; }
  .checkout-success.active { display:block; }

  .success-check {
    width:56px; height:56px; border-radius:50%;
    background:rgba(201,59,30,0.08); border:1px solid rgba(201,59,30,0.2);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 20px;
    font-size:22px; color:var(--chili);
    font-family:'Lora', serif;
  }

  .checkout-success-title { font-family:'Lora', serif; font-size:26px; font-weight:700; color:var(--ink); margin-bottom:10px; }
  .checkout-success-sub { font-size:14px; font-weight:300; color:var(--muted); line-height:1.75; }

  /* Jury */
  .koz-jury { margin-top:72px; }
  .jury-title { font-family:'Lora', serif; font-size:26px; font-weight:700; margin-bottom:28px; padding-bottom:18px; border-bottom:1px solid var(--border); color:var(--ink); }

  .jury-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-bottom:56px; }
  .jury-card { background:var(--bg); border:1px solid var(--border); padding:28px; }

  .jury-avatar {
    width:52px; height:52px; border-radius:50%;
    background:rgba(201,59,30,0.08); border:1px solid rgba(201,59,30,0.2);
    display:flex; align-items:center; justify-content:center;
    font-family:'Lora', serif; font-size:18px; font-weight:700; color:var(--chili);
    margin-bottom:14px; font-style:italic;
  }

  .jury-name { font-family:'Lora', serif; font-size:17px; font-weight:700; color:var(--ink); margin-bottom:5px; }
  .jury-role { font-size:12px; font-weight:300; color:var(--muted); line-height:1.5; margin-bottom:10px; }
  .jury-link { font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color:var(--chili); text-decoration:none; }
  .jury-link:hover { color:var(--chili2); }

  /* Perks */
  .koz-get { margin-bottom:56px; }
  .koz-get-title { font-family:'Lora', serif; font-size:22px; font-weight:700; margin-bottom:20px; color:var(--ink); }
  .koz-perks { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; }
  .koz-perk { background:var(--bg); border:1px solid var(--border); padding:18px 22px; display:flex; align-items:flex-start; gap:12px; }
  .koz-perk-line { width:16px; height:1px; background:var(--chili); flex-shrink:0; margin-top:9px; }
  .koz-perk-text { font-size:14px; font-weight:300; color:var(--ink2); line-height:1.55; }

  /* Partners */
  .koz-partners { margin-top:56px; padding-top:48px; border-top:1px solid var(--border); }
  .koz-partners-title { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--muted); margin-bottom:20px; }
  .koz-partner-row { display:flex; gap:40px; align-items:center; flex-wrap:wrap; }
  .koz-partner {
    font-family:'Lora', serif; font-size:17px; font-weight:700;
    color:var(--muted2); text-decoration:none; font-style:italic; transition:color 0.2s;
  }
  .koz-partner:hover { color:var(--ink); }

  /* ─── FOR PLACES ─── */
  #for-places { background:var(--bg2); border-top:1px solid var(--border); }

  .for-places-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; max-width:1200px; margin:0 auto; }

  .for-places-list {}
  .fp-item { padding:26px 0; border-top:1px solid var(--border); display:flex; gap:18px; align-items:flex-start; }
  .fp-num {
    font-family:'Lora', serif; font-size:12px; font-style:italic;
    color:var(--muted2); min-width:22px; padding-top:2px;
  }
  .fp-text strong { display:block; font-size:15px; font-weight:500; color:var(--ink); margin-bottom:5px; }
  .fp-text p { font-size:13px; font-weight:300; color:var(--muted); line-height:1.6; }

  .for-places-cta { background:var(--surface); border:1px solid var(--border2); border-radius:4px; padding:48px; text-align:center; }
  .fp-cta-title { font-family:'Lora', serif; font-size:30px; font-weight:700; margin-bottom:14px; line-height:1.1; color:var(--ink); }
  .fp-cta-title em { font-style:italic; color:var(--chili); }
  .fp-cta-sub { font-size:14px; font-weight:300; color:var(--muted); margin-bottom:32px; line-height:1.7; }
  .fp-cta-price { font-family:'Lora', serif; font-size:46px; font-weight:700; color:var(--ink); margin-bottom:3px; }
  .fp-cta-price sup { font-size:20px; font-weight:400; vertical-align:super; color:var(--muted); }
  .fp-cta-period { font-size:12px; color:var(--muted); margin-bottom:28px; }

  .divider { display:flex; align-items:center; gap:14px; margin:24px 0; }
  .divider::before, .divider::after { content:''; flex:1; height:1px; background:var(--border2); }
  .divider span { font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--muted2); }

  /* ─── FOOTER ─── */
  footer {
    background:var(--ink); padding:52px 48px 36px;
    display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:20px;
  }
  .footer-logo { font-family:'Lora', serif; font-size:20px; font-weight:700; color:#F5F0E8; }
  .footer-logo span { color:var(--chili); }
  .footer-logo sup { font-size:10px; color:rgba(245,240,232,0.35); font-weight:400; vertical-align:middle; margin-left:6px; letter-spacing:0.12em; text-transform:uppercase; }
  .footer-copy { font-size:12px; color:rgba(245,240,232,0.3); }

  /* ─── MOBILE ─── */
  @media(max-width:768px){
    nav { padding:16px 20px; }
    .nav-links { display:none; }
    section { padding:72px 20px; }
    #hero { padding:0 20px 56px; }
    .hero-stats { position:static; margin-top:36px; justify-content:flex-start; }
    .hero-ep { display:none; }
    .concept-grid,.for-places-grid,.koz-top { grid-template-columns:1fr; gap:36px; }
    .places-grid,.jury-grid,.koz-perks { grid-template-columns:1fr; }
    .places-pagination { flex-direction:column; align-items:flex-start; }
    .places-load-more { width:100%; }
    .places-header,.map-header { flex-direction:column; gap:20px; align-items:flex-start; }
    .quiz-options,.result-places { grid-template-columns:1fr; }
    .ticket-card { flex-wrap:wrap; }
    footer { padding:36px 20px 28px; }
  }

  /* ─── PLACE DRAWER ─── */
  #placeDrawer {
    scrollbar-width: thin;
    scrollbar-color: var(--border2) transparent;
  }
  #placeDrawer::-webkit-scrollbar { width: 4px; }
  #placeDrawer::-webkit-scrollbar-track { background: transparent; }
  #placeDrawer::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

  @media (max-width: 520px) {
    #placeDrawer { width: 100vw !important; }
  }


/* Recipes */
.nav-recipes{display:inline-flex;align-items:center;justify-content:center;padding:14px 16px;border:1px solid rgba(28,23,16,.12);font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--ink);text-decoration:none;background:rgba(255,255,255,.6)}
.nav-recipes:hover{border-color:var(--line2);color:var(--accent)}
.recipes-hero{padding:120px 72px 28px;max-width:1220px;margin:0 auto}
.recipes-hero-text{max-width:760px;font-size:18px;line-height:1.9;color:var(--ink2);font-weight:300}
.recipes-featured{max-width:1220px;margin:0 auto;padding:12px 72px 48px;display:grid;grid-template-columns:1.15fr .85fr;gap:28px}
.recipes-featured-media,.recipe-card-media,.recipe-single-media{display:block;background:#ece7df center/cover no-repeat;border:1px solid var(--line);min-height:320px}
.recipes-featured-copy{border:1px solid var(--line);background:rgba(255,255,255,.55);padding:38px 34px;display:flex;flex-direction:column;justify-content:center}
.recipes-meta-line{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0 18px;color:var(--muted);font-size:12px;letter-spacing:.1em;text-transform:uppercase}.recipes-meta-line span{padding-right:10px;border-right:1px solid var(--line)}.recipes-meta-line span:last-child{border-right:none;padding-right:0}
.recipes-grid-wrap,.recipe-more{max-width:1220px;margin:0 auto;padding:0 72px 72px}
.recipes-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.recipe-card{border:1px solid var(--line);background:rgba(255,255,255,.55)}
.recipe-card-media{min-height:220px;border:none;border-bottom:1px solid var(--line)}
.recipe-card-body{padding:24px 24px 26px}
.recipe-card-top{display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);font-size:11px;letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px}
.recipe-card h3{margin:0 0 10px;font-size:38px;line-height:1.06}.recipe-card h3 a{text-decoration:none;color:var(--ink)}
.recipe-card-time{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);margin-bottom:10px}
.recipe-card p{font-size:16px;line-height:1.8;color:var(--ink2);font-weight:300;margin:0 0 14px}
.recipe-card-link{font-size:12px;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;color:var(--accent);font-weight:600}
.recipes-empty{grid-column:1/-1;padding:44px;border:1px solid var(--line);text-align:center;color:var(--muted)}
.recipe-single-hero{max-width:1220px;margin:0 auto;padding:120px 72px 26px;display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;align-items:end}
.recipe-single-subtitle{font-size:24px;line-height:1.5;color:var(--ink2);font-style:italic;font-weight:300;margin-top:10px}
.recipe-single-media{min-height:480px}
.recipe-single-layout{max-width:1220px;margin:0 auto;padding:0 72px 72px;display:grid;grid-template-columns:380px minmax(0,1fr);gap:38px;align-items:start}
.recipe-sidebar{position:sticky;top:96px;display:flex;flex-direction:column;gap:18px}
.recipe-ingredients{border:1px solid var(--line);background:rgba(255,255,255,.55);padding:28px 26px}.recipe-ingredients h3{margin:0 0 16px;font-size:22px}.recipe-ingredients ul{margin:0;padding-left:20px;display:flex;flex-direction:column;gap:10px}.recipe-ingredients li{font-size:16px;line-height:1.55;color:var(--ink2)}
.recipe-ingredients.alt{background:rgba(243,239,233,.9)}
.recipe-episode-link{display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--accent);padding:14px 18px;color:var(--accent);text-decoration:none;font-size:12px;letter-spacing:.12em;text-transform:uppercase;font-weight:600;background:#fff}
.recipe-intro,.recipe-copy,.recipe-variations{border-top:1px solid var(--line);padding-top:28px;margin-top:28px}
.recipe-intro{margin-top:0}.recipe-intro p,.recipe-copy p,.recipe-variations p{font-size:18px;line-height:1.95;color:var(--ink2);font-weight:300}.recipe-copy h2{margin:0 0 16px;font-size:52px;line-height:1.02}
@media (max-width: 1024px){.recipes-featured,.recipe-single-hero,.recipe-single-layout{grid-template-columns:1fr}.recipe-sidebar{position:static}.recipes-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 768px){.nav-recipes{display:none}.recipes-hero,.recipes-featured,.recipes-grid-wrap,.recipe-more,.recipe-single-hero,.recipe-single-layout{padding-left:20px;padding-right:20px}.recipes-grid{grid-template-columns:1fr}.recipe-card h3{font-size:30px}.recipe-copy h2{font-size:38px}.recipe-single-media,.recipes-featured-media{min-height:280px}}

.dc-recipe-page{
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.dc-recipe-hero{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:48px;
  align-items:start;
  margin-bottom:56px;
}
.dc-kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#d44a2b;
  margin-bottom:18px;
}
.dc-recipe-hero h1{
  font-size:72px;
  line-height:.95;
  margin:0 0 20px;
}
.dc-recipe-subtitle{
  font-size:28px;
  line-height:1.35;
  color:#6f675d;
  margin:0 0 20px;
  font-style:italic;
}
.dc-recipe-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 24px;
}
.dc-recipe-meta span{
  border:1px solid #d8d0c6;
  padding:10px 14px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.dc-recipe-hero__media img{
  width:100%;
  height:auto;
  display:block;
  border-radius:0;
}
.dc-recipe-body{
  display:grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap:56px;
}
.dc-recipe-card{
  background:#f3efe8;
  border:1px solid #e2dbd1;
  padding:24px;
  margin-bottom:20px;
}
.dc-recipe-card h3{
  margin:0 0 14px;
  font-size:18px;
}
.dc-recipe-card ul{
  margin:0;
  padding-left:18px;
}
.dc-recipe-card li{
  margin:0 0 8px;
}
.dc-recipe-content h2{
  font-size:42px;
  margin:0 0 20px;
}
.dc-richtext{
  font-size:20px;
  line-height:1.8;
  color:#2b2622;
}
.dc-richtext p{
  margin:0 0 18px;
}
.dc-recipe-variations{
  margin-top:48px;
  padding-top:32px;
  border-top:1px solid #ddd4c8;
}
@media (max-width: 960px){
  .dc-recipe-page{padding:32px 20px 56px;}
  .dc-recipe-hero{grid-template-columns:1fr; gap:28px;}
  .dc-recipe-body{grid-template-columns:1fr; gap:28px;}
  .dc-recipe-hero h1{font-size:48px;}
  .dc-recipe-content h2{font-size:32px;}
  .dc-richtext{font-size:18px;}
}



/* === RECIPES START === */
.dc-recipe-page{
  max-width:1280px;
  margin:0 auto;
  padding:56px 32px 88px;
}
.dc-recipe-hero{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,0.95fr);
  gap:56px;
  align-items:center;
  margin-bottom:64px;
}
.dc-kicker{
  font-size:12px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#d44a2b;
  margin-bottom:18px;
}
.dc-recipe-hero h1{
  font-size:76px;
  line-height:.94;
  margin:0 0 18px;
}
.dc-recipe-subtitle{
  font-size:30px;
  line-height:1.35;
  font-style:italic;
  color:#7a7168;
  margin:0 0 18px;
  max-width:680px;
}
.dc-recipe-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 22px;
}
.dc-recipe-meta span{
  padding:10px 14px;
  border:1px solid #d9d1c6;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#4a433d;
}
.dc-recipe-intro{
  max-width:760px;
  font-size:20px;
  line-height:1.8;
  color:#2f2a26;
}
.dc-recipe-hero__media img{
  display:block;
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.dc-recipe-body{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:64px;
  align-items:start;
}
.dc-recipe-sidebar{
  position:sticky;
  top:110px;
}
.dc-recipe-card{
  background:#f3eee6;
  border:1px solid #dfd7cd;
  padding:24px 24px 20px;
  margin-bottom:18px;
}
.dc-recipe-card h3{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.2;
}
.dc-recipe-card ul{
  margin:0;
  padding-left:18px;
}
.dc-recipe-card li{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.6;
}
.dc-recipe-content{
  min-width:0;
}
.dc-recipe-content h2{
  font-size:48px;
  line-height:1;
  margin:0 0 20px;
}
.dc-richtext{
  font-size:21px;
  line-height:1.85;
  color:#231f1c;
}
.dc-richtext p{
  margin:0 0 18px;
}
.dc-recipe-variations{
  margin-top:56px;
  padding-top:32px;
  border-top:1px solid #ddd4c8;
}
.dc-recipe-related{
  margin-top:80px;
  padding-top:36px;
  border-top:1px solid #ddd4c8;
}
.dc-recipe-related__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}
.dc-recipe-tile__image img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.dc-recipe-tile__meta{
  padding-top:12px;
}
.dc-recipe-tile__kicker{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#8a8178;
  margin-bottom:8px;
}
.dc-recipe-tile h3{
  font-size:28px;
  line-height:1.05;
  margin:0;
}
.dc-recipe-tile h3 a{
  color:inherit;
  text-decoration:none;
}
@media (max-width: 1100px){
  .dc-recipe-page{padding:40px 24px 72px;}
  .dc-recipe-hero{
    grid-template-columns:1fr;
    gap:32px;
  }
  .dc-recipe-hero h1{font-size:58px;}
  .dc-recipe-body{
    grid-template-columns:1fr;
    gap:36px;
  }
  .dc-recipe-sidebar{
    position:static;
  }
  .dc-recipe-related__grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 700px){
  .dc-recipe-page{padding:28px 18px 56px;}
  .dc-recipe-hero h1{font-size:42px;}
  .dc-recipe-subtitle{font-size:22px;}
  .dc-recipe-content h2{font-size:34px;}
  .dc-richtext{font-size:18px; line-height:1.75;}
}
/* === RECIPES END === */



/* === RECIPES OVERRIDE START === */
.recipes-page{
  padding:140px 0 88px;
}
.recipes-wrap,
.dc-recipe-wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 48px;
}
.recipes-page-intro{
  max-width:980px;
  font-size:18px;
  line-height:1.9;
  color:var(--muted);
  margin:0 0 42px;
}
.recipes-featured-panel{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  gap:32px;
  align-items:stretch;
  margin-bottom:52px;
}
.recipes-featured-panel__media{
  display:block;
  min-height:430px;
  background:#e8e2d9 center/cover no-repeat;
  border:1px solid var(--border);
}
.recipes-featured-panel__content{
  border:1px solid var(--border);
  background:rgba(255,255,255,.45);
  padding:44px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.recipes-featured-panel__content h2{
  margin:0 0 18px;
  font-family:'Lora',serif;
  font-size:76px;
  line-height:.96;
}
.recipes-featured-panel__content h2 a{
  color:var(--ink);
  text-decoration:none;
}
.recipes-featured-panel__meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted2);
  margin-bottom:20px;
}
.recipes-featured-panel__content p{
  font-size:18px;
  line-height:1.85;
  color:var(--ink2);
  margin:0 0 24px;
}
.recipe-main-cta{
  align-self:flex-start;
  min-width:220px;
  text-align:center;
}
.recipes-list-section{
  margin-top:10px;
}
.recipes-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}
.recipe-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.45);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.recipe-card-media{
  display:block;
  height:320px;
  background:#e9e3db center/cover no-repeat;
  border-bottom:1px solid var(--border);
}
.recipe-card-body{
  padding:28px 28px 30px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.recipe-card-top{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted2);
}
.recipe-card h3{
  font-family:'Lora',serif;
  font-size:46px;
  line-height:1.02;
  margin:0;
}
.recipe-card h3 a{
  text-decoration:none;
  color:var(--ink);
}
.recipe-card p{
  font-family:'Source Sans 3',sans-serif;
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
  margin:0;
}
.recipe-card-link{
  margin-top:6px;
  text-decoration:none;
  color:var(--chili);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}

.dc-recipe-page{
  padding:132px 0 88px;
}
.dc-recipe-wrap{
  max-width:1280px;
}
.dc-recipe-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,.92fr);
  gap:48px;
  align-items:center;
  margin-bottom:60px;
}
.dc-recipe-copy-side{
  max-width:760px;
}
.dc-recipe-title{
  font-family:'Lora',serif;
  font-size:86px;
  line-height:.92;
  letter-spacing:-.02em;
  margin:0 0 18px;
  color:var(--ink);
}
.dc-recipe-subtitle{
  font-family:'Source Sans 3',sans-serif;
  font-size:30px;
  line-height:1.35;
  color:var(--muted);
  font-style:italic;
  margin:0 0 18px;
  max-width:640px;
}
.dc-recipe-intro p{
  font-family:'Source Sans 3',sans-serif;
  font-size:19px;
  line-height:1.9;
  color:var(--ink2);
  margin:0 0 18px;
}
.dc-recipe-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:22px 0 28px;
}
.dc-recipe-meta span{
  border:1px solid var(--border2);
  padding:10px 14px;
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted2);
}
.dc-recipe-episode-link{
  display:inline-block;
  text-decoration:none;
  color:var(--chili);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}
.dc-recipe-media img,
.dc-recipe-media-placeholder{
  display:block;
  width:100%;
  height:620px;
  object-fit:cover;
  background:#e8e2d9;
  border:1px solid var(--border);
}
.dc-recipe-content-grid{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:56px;
  align-items:start;
}
.dc-recipe-sidebar{
  position:sticky;
  top:110px;
}
.dc-recipe-panel{
  background:#f4efe8;
  border:1px solid var(--border);
  padding:24px 24px 14px;
}
.dc-recipe-ingredients-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.dc-recipe-ingredients-grid.one-col{
  grid-template-columns:1fr;
}
.dc-recipe-ingredients-grid h3{
  font-family:'Lora',serif;
  font-size:20px;
  margin:0 0 10px;
}
.dc-recipe-ingredients-grid ul{
  margin:0;
  padding-left:18px;
}
.dc-recipe-ingredients-grid li{
  font-family:'Source Sans 3',sans-serif;
  font-size:16px;
  line-height:1.65;
  color:var(--ink2);
  margin:0 0 7px;
}
.dc-recipe-section{
  margin-bottom:48px;
}
.dc-recipe-section h2{
  font-family:'Lora',serif;
  font-size:56px;
  line-height:1;
  margin:0 0 18px;
}
.dc-recipe-richtext p{
  font-family:'Source Sans 3',sans-serif;
  font-size:20px;
  line-height:1.9;
  color:var(--ink2);
  margin:0 0 18px;
}
.dc-recipe-section-alt{
  padding-top:28px;
  border-top:1px solid var(--border);
}
.dc-recipe-more{
  margin-top:56px;
  padding-top:32px;
  border-top:1px solid var(--border);
}
@media (max-width: 1100px){
  .recipes-wrap,
  .dc-recipe-wrap{padding:0 24px;}
  .recipes-featured-panel,
  .dc-recipe-hero,
  .dc-recipe-content-grid{
    grid-template-columns:1fr;
  }
  .recipes-featured-panel__content h2{font-size:58px;}
  .dc-recipe-title{font-size:62px;}
  .dc-recipe-sidebar{position:static;}
}
@media (max-width: 700px){
  .recipes-page,
  .dc-recipe-page{padding-top:96px;}
  .recipes-wrap,
  .dc-recipe-wrap{padding:0 18px;}
  .recipes-grid{grid-template-columns:1fr;}
  .recipes-featured-panel__media{min-height:280px;}
  .recipes-featured-panel__content{padding:28px 24px;}
  .recipes-featured-panel__content h2{font-size:42px;}
  .recipe-card-media{height:220px;}
  .recipe-card h3{font-size:34px;}
  .dc-recipe-title{font-size:46px;}
  .dc-recipe-subtitle{font-size:22px;}
  .dc-recipe-media img,.dc-recipe-media-placeholder{height:360px;}
  .dc-recipe-ingredients-grid{grid-template-columns:1fr;}
  .dc-recipe-section h2{font-size:38px;}
  .dc-recipe-richtext p{font-size:18px; line-height:1.8;}
}
/* === RECIPES OVERRIDE END === */


/* === TYPO SIZE TWEAKS START === */
#for-places p,
#for-places li,
#for-places .muted,
#for-places .small,
#for-places .fineprint,
.for-places p,
.for-places li,
.for-places .muted,
.for-places .small,
.for-places .fineprint {
  font-size: 19px;
  line-height: 1.8;
}

#for-places .section-label + .section-title + p {
  font-size: 20px;
  line-height: 1.85;
}

#for-places .profile-points li,
#for-places .feature-list li,
.for-places .profile-points li,
.for-places .feature-list li {
  font-size: 18px;
  line-height: 1.75;
}

#site-footer,
#site-footer p,
#site-footer small,
#site-footer .muted {
  font-size: 16px;
  line-height: 1.7;
}

.recipes-page-intro,
.dc-recipe-intro p,
.recipe-card p {
  font-size: 19px;
  line-height: 1.85;
}
/* === TYPO SIZE TWEAKS END === */

/* === RECIPES TITLE SIZE CORRECTION START === */
.recipes-featured-panel__content h2{
  font-size: 56px;
  line-height: 0.98;
}

.recipe-card h3{
  font-size: 34px;
  line-height: 1.05;
}

.dc-recipe-title{
  font-size: 64px;
  line-height: 0.95;
}

@media (max-width: 1100px){
  .recipes-featured-panel__content h2{
    font-size: 46px;
  }

  .dc-recipe-title{
    font-size: 52px;
  }
}

@media (max-width: 700px){
  .recipes-featured-panel__content h2{
    font-size: 38px;
  }

  .recipe-card h3{
    font-size: 30px;
  }

  .dc-recipe-title{
    font-size: 42px;
  }
}
/* === RECIPES TITLE SIZE CORRECTION END === */

/* === LAYOUT POLISH START === */

/* HERO spacing */
.recipes-hero{
  margin-bottom: 70px;
}

.recipes-hero-text{
  max-width: 720px;
  font-size: 20px;
  line-height: 1.9;
  opacity: 0.9;
}

/* FEATURED layout */
.recipes-featured{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.recipes-featured-media{
  min-height: 420px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.recipes-featured-copy{
  padding: 40px;
  background: #f6f3ee;
  border-radius: 6px;
}

/* meta line */
.recipes-meta-line{
  margin: 12px 0 18px;
  font-size: 14px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* BUTTON refinement */
.btn-chili{
  display: inline-block;
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: #c73a1d;
  color: #fff;
  transition: all 0.25s ease;
}

.btn-chili:hover{
  background: #a83218;
  transform: translateY(-1px);
}

/* GRID spacing */
.recipes-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

/* CARD polish */
.recipe-card-media{
  border-radius: 6px;
  overflow: hidden;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.recipe-card-body{
  margin-top: 16px;
}

.recipe-card-top{
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin-bottom: 8px;
}

.recipe-card p{
  margin-top: 10px;
  opacity: 0.9;
}

/* link style */
.recipe-card-link{
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: #c73a1d;
  text-decoration: none;
}

.recipe-card-link:hover{
  text-decoration: underline;
}

/* SINGLE PAGE polish */
.dc-recipe-hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.dc-recipe-hero__media img{
  border-radius: 6px;
}

.dc-recipe-meta{
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dc-recipe-intro{
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.9;
}

/* SIDEBAR */
.dc-recipe-sidebar{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dc-recipe-card{
  background: #f6f3ee;
  padding: 24px;
  border-radius: 6px;
}

.dc-recipe-card h3{
  margin-bottom: 14px;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .recipes-featured{
    grid-template-columns: 1fr;
  }

  .dc-recipe-hero{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .recipes-grid{
    grid-template-columns: 1fr;
  }

  .recipes-featured-copy{
    padding: 24px;
  }
}

/* === LAYOUT POLISH END === */


/* === TICKETS MODAL START === */
.dc-ticket-modal[hidden] { display:none; }
.dc-ticket-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}
.dc-ticket-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(28,23,16,.58);
  backdrop-filter:blur(6px);
}
.dc-ticket-modal__dialog{
  position:relative;
  max-width:560px;
  margin:80px auto;
  background:#f8f4ed;
  border:1px solid rgba(28,23,16,.12);
  box-shadow:0 28px 60px rgba(28,23,16,.24);
  padding:34px 34px 28px;
}
.dc-ticket-modal__close{
  position:absolute;
  top:16px;
  right:18px;
  border:0;
  background:transparent;
  font-size:34px;
  line-height:1;
  color:#7b7368;
  cursor:pointer;
}
.dc-ticket-modal__eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--chili);
  margin-bottom:10px;
}
.dc-ticket-modal__header{
  margin-bottom:26px;
  padding-right:40px;
}
.dc-ticket-modal__title{
  margin:0 0 8px;
  font-size:48px;
  line-height:.96;
}
.dc-ticket-modal__price{
  font-size:28px;
  font-weight:700;
  color:var(--chili);
}
.dc-ticket-form{
  display:grid;
  gap:16px;
}
.dc-ticket-form__field{
  display:grid;
  gap:8px;
}
.dc-ticket-form__field span{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#7b7368;
}
.dc-ticket-form__field input{
  width:100%;
  border:1px solid rgba(28,23,16,.14);
  background:#fff;
  padding:14px 16px;
  font-size:18px;
  line-height:1.3;
  color:#1e1915;
}
.dc-ticket-form__actions{
  padding-top:4px;
}
.dc-ticket-form__submit{
  width:100%;
  justify-content:center;
}
.dc-ticket-form__note{
  font-size:14px;
  line-height:1.7;
  color:#8a8178;
  text-align:center;
}
.dc-ticket-form__message{
  min-height:24px;
  font-size:14px;
  line-height:1.6;
  text-align:center;
}
.dc-ticket-form__message.is-success{ color:#1c7a43; }
.dc-ticket-form__message.is-error{ color:#b13a24; }
@media (max-width:700px){
  .dc-ticket-modal__dialog{
    margin:32px 16px;
    padding:24px 20px 22px;
  }
  .dc-ticket-modal__title{ font-size:34px; }
  .dc-ticket-modal__price{ font-size:24px; }
}
/* === TICKETS MODAL END === */

/* === TICKETS MODAL REWIRE FIX START === */
.dc-ticket-modal__sub{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#8a8178;
  margin:0 0 8px;
}

#vivaModal{
  display:none !important;
}
/* === TICKETS MODAL REWIRE FIX END === */

/* ── Profile nav button ─────────────────────────────────── */
.nav-profile-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--chili); color: #fff;
  font-family: 'Lora', serif; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: opacity .2s;
}
.nav-profile-avatar:hover { opacity: .8; }
.nav-profile-login {
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted) !important;
  border: 1px solid var(--border2); padding: 6px 12px;
  border-radius: 2px; text-decoration: none !important;
  transition: all .2s;
}
.nav-profile-login:hover { color: var(--ink) !important; border-color: var(--ink2); }


/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE — Дроб & Чили
   ═══════════════════════════════════════════════ */

/* ── MAP SECTION ─── */
@media (max-width: 768px) {

  /* Карта + маршрут: stack вертикално */
  .map-grid {
    grid-template-columns: 1fr !important;
  }

  /* Маршрут sidebar: border отгоре вместо отляво */
  .map-grid > div:last-child {
    border-left: none !important;
    border-top: 1px solid var(--border2);
    max-height: 320px;
    overflow-y: auto;
  }

  /* Карта: по-ниска на мобилен */
  .dc-leaflet-map {
    height: 300px !important;
  }

  /* Map header: padding за мобилен */
  .map-header {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 16px !important;
  }

  /* Филтри на картата: padding + wrap */
  #map-section > div:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
    gap: 8px;
  }

  /* "Изчисти маршрута" — на нов ред, full width */
  #map-section > div:nth-child(2) > button:last-child {
    flex: 0 0 100%;
    margin-top: 4px;
  }

  /* Скрий flex spacer пред бутона на мобилен */
  #map-section > div:nth-child(2) > div[style*="flex:1"] {
    display: none;
  }
}

/* ── DRAWER ─── */
@media (max-width: 768px) {
  #placeDrawer {
    width: 100vw !important;
    max-height: 80vh;
    top: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
  }
}

/* ── HERO ─── */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(38px, 10vw, 64px); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions a { width: 100%; text-align: center; }
}

/* ── QUIZ / PLANNER ─── */
@media (max-width: 768px) {
  .quiz-container { padding: 0 20px; }
  .quiz-inner { padding: 24px 20px; }
  .quiz-question { font-size: 22px; }
}

/* ── NAVIGATION ─── */
@media (max-width: 768px) {
  nav { padding: 14px 20px !important; }
  .nav-links { display: none !important; }
}

/* ── CONCEPT & FOR-PLACES ─── */
@media (max-width: 768px) {
  .concept-grid,
  .for-places-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .for-places-cta {
    padding: 32px 24px !important;
  }
}

/* ── KOZUNACI SECTION ─── */
@media (max-width: 768px) {
  .koz-top {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .koz-perks {
    grid-template-columns: 1fr !important;
  }
  .ticket-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── SECTIONS общо ─── */
@media (max-width: 768px) {
  section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-title {
    font-size: clamp(32px, 9vw, 52px);
  }
}

/* ── CHECKOUT MODAL ─── */
@media (max-width: 768px) {
  .checkout-modal {
    width: 100% !important;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 !important;
  }
  .checkout-overlay {
    align-items: flex-end !important;
  }
}


/* ═══════════════════════════════════════════════
   BURGER MENU — Дроб & Чили
   ═══════════════════════════════════════════════ */

/* Nav right wrapper */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Бургер бутон — скрит на десктоп */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Бургер → X анимация */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--border2);
  z-index: 999;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.mobile-menu.is-open {
  transform: translateX(0);
}

/* Menu links */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-menu-links li a {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu-links li a:hover { color: var(--chili); }
.mobile-menu-links li:last-child a { border-bottom: none; }

/* Footer с бутони */
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border2);
}
.mobile-menu-footer a {
  text-align: center;
  padding: 14px;
  font-size: 13px;
}

/* Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Hero — предотврати overlap с навигацията */
#hero { padding-top: 80px; }

/* На мобилен — показвай бургера, скрий nav-links и nav-recipes */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links  { display: none !important; }
  .nav-recipes { display: none; }
  .nav-cta { display: none; }
  .nav-profile-login { display: none; }
}


/* ══════════════════════════════════════════════════════════
   MINI PLAYER — Дроб & Чили
   ══════════════════════════════════════════════════════════ */
#dc-mini-player {
  position: fixed;
  bottom: -90px;
  left: 0; right: 0;
  z-index: 600;
  height: 68px;
  background: var(--ink);
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
}
#dc-mini-player.active {
  bottom: 0;
}

/* Left — cover + info */
.dmp-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  cursor: pointer;
}
.dmp-cover {
  width: 40px; height: 40px;
  border-radius: 3px;
  background: rgba(245,240,232,0.1) center/cover no-repeat;
  flex-shrink: 0;
}
.dmp-info { min-width: 0; }
.dmp-place {
  font-size: 12px;
  font-weight: 500;
  color: #F5F0E8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.dmp-ep {
  font-size: 11px;
  color: rgba(245,240,232,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  margin-top: 2px;
}

/* Controls */
.dmp-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.dmp-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,240,232,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  padding: 0;
}
.dmp-btn:hover { color: #F5F0E8; background: rgba(245,240,232,0.08); }
.dmp-play {
  width: 42px; height: 42px;
  color: #F5F0E8;
  background: rgba(201,59,30,0.85);
  border-radius: 50%;
}
.dmp-play:hover { background: var(--chili); }

/* Right — progress + close */
.dmp-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.dmp-progress-wrap { flex: 1; min-width: 0; }
.dmp-scrubber {
  width: 100%;
  height: 3px;
  margin-bottom: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(to right, var(--chili) 0%, rgba(245,240,232,0.15) 0%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.dmp-scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #F5F0E8;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}
#dc-mini-player:hover .dmp-scrubber::-webkit-slider-thumb { opacity: 1; }
.dmp-scrubber::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #F5F0E8;
  border: none;
  cursor: pointer;
}
.dmp-scrubber::-webkit-slider-runnable-track { border-radius: 2px; }
.dmp-times {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.04em;
}
.dmp-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,240,232,0.4);
  font-size: 14px;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.dmp-close:hover { color: #F5F0E8; background: rgba(245,240,232,0.08); }

/* На мобилен — по-компактен */
@media (max-width: 768px) {
  #dc-mini-player { padding: 0 12px; gap: 8px; }
  .dmp-ep { display: none; }
  .dmp-place { max-width: 120px; }
  .dmp-right { flex: 1; }
}

/* ═══════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════ */
#partners {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 72px;
}
.partners-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
#partners .section-label {
  text-align: center;
  margin-bottom: 32px;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.2s;
  text-decoration: none;
}
.partner-item:hover { opacity: 1; }
.partner-item img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s;
}
.partner-item:hover img { filter: grayscale(0%); }
.partner-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  #partners { padding: 40px 20px; }
  .partners-logos { gap: 24px 32px; }
  .partner-item img { height: 28px; max-width: 90px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU & RESPONSIVE FIX v2
   ═══════════════════════════════════════════════════════ */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 2px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 57px; left: 0; right: 0;
  background: rgba(245,240,232,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 98;
  padding: 8px 0 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-links { list-style: none; padding: 0; margin: 0; }
.mobile-menu-links li a {
  display: block;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu-links li a:hover { color: var(--ink); }
.mobile-menu-footer { display: flex; gap: 10px; padding: 20px 20px 0; }
.mobile-menu-footer .btn-chili { flex: 1; text-align: center; padding: 13px 16px; }
.btn-gold {
  flex: 1; display: inline-block; text-align: center;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 13px 16px; border-radius: 2px;
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.btn-gold:hover { background: var(--gold); color: #fff; }
.mobile-menu-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(28,23,16,0.3); z-index: 97;
}
.mobile-menu-backdrop.open { display: block; }

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none !important; }
  .nav-recipes { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #hero { padding: 80px 20px 52px; min-height: 100svh; }
  .hero-title { font-size: clamp(36px, 10vw, 58px); margin-bottom: 20px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-chili { text-align: center; padding: 16px 24px; }
  .hero-stats { position: static !important; margin-top: 36px; justify-content: flex-start; gap: 24px; }
  .hero-ep { display: none; }
  section { padding: 56px 20px; }
  .section-title { font-size: clamp(26px, 7.5vw, 40px); }
  .concept-grid { grid-template-columns: 1fr; gap: 28px; }
  .places-header { flex-direction: column; gap: 14px; align-items: flex-start; }
  .places-grid { grid-template-columns: 1fr; }
  .places-filters { overflow-x: auto; white-space: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .places-pagination { flex-direction: column; align-items: stretch; gap: 10px; }
  .places-load-more { width: 100%; text-align: center; }
  #map-section { padding: 0 0 40px; }
  .map-header { flex-direction: column; gap: 14px; align-items: flex-start; padding: 32px 20px 16px; }
  #mainMap { height: 55vh !important; min-height: 300px; }
  #placeDrawer { width: 100vw !important; top: 0 !important; border-radius: 0; padding-top: 56px; }
  .quiz-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .quiz-option { padding: 14px 10px; font-size: 13px; }
  .result-places { grid-template-columns: 1fr; }
  .koz-top { grid-template-columns: 1fr; gap: 28px; }
  .ticket-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
  .ticket-price { font-size: 30px; }
  .jury-grid { grid-template-columns: 1fr; gap: 16px; }
  .koz-perks { grid-template-columns: 1fr; }
  .for-places-grid { grid-template-columns: 1fr; gap: 28px; }
  .for-places-cta { padding: 24px 18px; }
  footer { padding: 32px 20px 24px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .recipes-hero { padding: 80px 20px 20px; }
  .recipes-featured { padding: 12px 20px 28px; grid-template-columns: 1fr; }
  .recipes-grid-wrap { padding: 0 20px 36px; }
  .recipes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .quiz-options { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .hero-stat-n { font-size: 26px; }
  .mobile-menu-footer { flex-direction: column; }
}

/* ── WordPress core wrapper fix ── */
.wp-site-blocks,
.entry-content,
.wp-block-group,
.is-layout-flow {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── WordPress admin bar margin fix ── */
html { background: var(--ink) !important; }
html body { margin-top: 0 !important; }
#wpadminbar { display: none !important; }
