:root{
  --bg:#f7f4f0; --card:#ffffff; --ink:#181320; --muted:#7a7385;
  --line:#ece7e1; --plum:#6d1f4b; --plum-d:#57173b; --gold:#bf9b48; --gold-d:#a07f2e;
  --accent:linear-gradient(135deg,#6d1f4b 0%,#a63a63 55%,#bf9b48 130%);
  --shadow:0 10px 30px rgba(24,19,32,.08); --shadow-sm:0 4px 14px rgba(24,19,32,.06);
  --radius:18px; --wrap:1160px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);
  font-family:'Rubik',system-ui,'Segoe UI',Arial,sans-serif;
  font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:20px;width:100%}

/* header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(247,244,240,.85);
  backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.brand{display:flex;align-items:center;gap:10px}
.site-logo{height:40px;width:auto;max-width:100%;display:block}
@media(max-width:560px){.site-logo{height:34px}}
.top-nav{display:flex;gap:20px;align-items:center}
.top-nav a{color:var(--muted);font-weight:600}
.top-nav a:hover{color:var(--plum)}
.lang-switch{border:1px solid var(--line);border-radius:999px;padding:5px 12px;font-size:13px;color:var(--plum)}
.lang-switch:hover{background:var(--plum);color:#fff;border-color:var(--plum)}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:0;cursor:pointer;font-family:inherit;font-weight:700;border-radius:12px;
  padding:12px 20px;font-size:15px;transition:transform .12s ease,box-shadow .2s ease;white-space:nowrap}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 8px 20px rgba(109,31,75,.28)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(109,31,75,.35)}
.btn-sm{padding:9px 14px;font-size:14px;border-radius:10px}
.btn-lg{padding:15px 30px;font-size:17px}
.btn-block{width:100%}

/* hero */
.hero{background:
  radial-gradient(1200px 400px at 90% -10%,rgba(191,155,72,.16),transparent 60%),
  radial-gradient(900px 380px at 0% 0%,rgba(109,31,75,.14),transparent 55%);
  border-bottom:1px solid var(--line)}
.hero-inner{padding:64px 20px 54px;text-align:center}
.hero-eyebrow{color:var(--gold-d);font-weight:700;letter-spacing:.5px;margin:0 0 10px;text-transform:uppercase;font-size:13px}
.hero-title{font-size:clamp(28px,5vw,46px);line-height:1.15;margin:0 0 14px;font-weight:800}
.hero-sub{color:var(--muted);max-width:620px;margin:0 auto 26px;font-size:18px}
.search-box{max-width:560px;margin-inline:auto}
.search-box input{width:100%;padding:16px 20px;border-radius:16px;border:1px solid var(--line);
  background:var(--card);font-family:inherit;font-size:17px;box-shadow:var(--shadow-sm);outline:none}
.search-box input:focus{border-color:var(--plum);box-shadow:0 0 0 4px rgba(109,31,75,.12)}

/* filters */
.main{padding-block:34px 60px}
.filters{display:flex;flex-direction:column;gap:14px;margin-bottom:26px}
.filter-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.filter-label{font-weight:700;color:var(--muted);min-width:70px;font-size:14px}
.chips{display:flex;gap:9px;flex-wrap:wrap}
.chip{border:1px solid var(--line);background:var(--card);color:var(--ink);
  padding:8px 15px;border-radius:999px;cursor:pointer;font-family:inherit;font-weight:600;
  font-size:14px;transition:all .15s ease}
.chip:hover{border-color:var(--plum);color:var(--plum)}
.chip.is-active{background:var(--plum);border-color:var(--plum);color:#fff}
.venue-chips .chip{max-width:210px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

.results-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:18px;gap:12px;flex-wrap:wrap}
.section-title{font-size:24px;margin:0;font-weight:800}
.results-count{color:var(--muted);font-weight:600}

/* grid + cards */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px}
.card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;box-shadow:var(--shadow-sm);
  transition:transform .15s ease,box-shadow .2s ease}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card-media{position:relative;aspect-ratio:16/10;overflow:hidden;background:#efe9e2}
.card-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.card:hover .card-media img{transform:scale(1.05)}
.card-badge{position:absolute;top:12px;inset-inline-start:12px;background:rgba(24,19,32,.72);
  color:#fff;padding:5px 12px;border-radius:999px;font-size:12px;font-weight:600;backdrop-filter:blur(4px)}
.card-body{padding:16px 18px 18px;display:flex;flex-direction:column;gap:9px;flex:1}
.card-title{font-size:18px;margin:0;line-height:1.3;font-weight:700}
.card-title a:hover{color:var(--plum)}
.card-meta{display:flex;flex-wrap:wrap;gap:6px 14px;color:var(--muted);font-size:13.5px;margin:0}
.card-meta .ico-cal::before{content:"📅 "}
.card-meta .ico-pin::before{content:"📍 "}
.card-announce{color:var(--muted);font-size:14px;margin:0;
  display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto;padding-top:4px}
.card-price{font-weight:800;color:var(--plum);font-size:16px}
.soldout{color:#c0392b;font-weight:800}
.btn-soldout{background:#ece5dd;color:#8a7f72;box-shadow:none}
.btn-soldout:hover{transform:none;box-shadow:none}
span.btn-soldout{cursor:default}
.aside-price-v.soldout{color:#c0392b}
.empty{text-align:center;color:var(--muted);padding:40px;font-size:18px}

/* city select + load more */
.city-select{border:1px solid var(--line);background:var(--card);color:var(--ink);
  padding:8px 15px;border-radius:999px;cursor:pointer;font-family:inherit;font-weight:600;
  font-size:14px;transition:all .15s ease;max-width:230px;
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236d1f4b' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center;padding-inline-end:30px}
.city-select:hover{border-color:var(--plum);color:var(--plum)}
.city-select:focus-visible{outline:2px solid var(--plum);outline-offset:1px}
.load-more-wrap{display:flex;justify-content:center;margin-top:34px}
.load-more-wrap[hidden]{display:none}
.load-more-btn{padding:14px 40px;font-size:16px}

/* breadcrumb */
.breadcrumb{padding-block:18px 4px;color:var(--muted);font-size:14px;display:flex;gap:8px;flex-wrap:wrap}
.breadcrumb a:hover{color:var(--plum)}
.breadcrumb .current{color:var(--ink);font-weight:600}

/* show page */
.show-hero{padding-block:20px 28px}
.show-hero-inner{display:grid;grid-template-columns:minmax(0,420px) 1fr;gap:34px;align-items:start}
.show-cover{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:#efe9e2;aspect-ratio:16/10}
.show-cover img{width:100%;height:100%;object-fit:cover}
.pill{display:inline-block;background:rgba(109,31,75,.1);color:var(--plum);font-weight:700;
  padding:6px 14px;border-radius:999px;font-size:13px;margin-bottom:12px}
.show-title{font-size:clamp(24px,4vw,36px);margin:0 0 10px;line-height:1.2;font-weight:800}
.show-lead{font-size:17px;line-height:1.7;font-weight:600;color:var(--ink);background:var(--bg);border-radius:10px;padding:14px 16px;margin:0 0 18px;border-inline-start:3px solid var(--plum)}
/* Mobile sticky CTA — изолированный блок, легко отключить (удалить блок и .mobile-cta в шаблоне) */
.mobile-cta{display:none}
@media(max-width:767px){
  .mobile-cta{display:block;position:fixed;inset-inline:0;bottom:0;z-index:80;background:#fff;box-shadow:0 -2px 16px rgba(0,0,0,.14);padding:10px 14px calc(10px + env(safe-area-inset-bottom))}
  .mobile-cta-btn{display:block;text-align:center;background:#16a34a;color:#fff;font-weight:800;font-size:17px;padding:15px;border-radius:12px;text-decoration:none;box-shadow:0 2px 8px rgba(22,163,74,.35)}
  .mobile-cta-btn:active{background:#12833c}
  body:has(.mobile-cta){padding-bottom:84px}
}
.show-announce{color:var(--muted);font-size:18px;margin:0 0 12px}
.show-artist-link{margin:0 0 18px}
.show-artist-link a{color:var(--plum);font-weight:700;font-size:15px}
.show-artist-link a:hover{text-decoration:underline}
.show-facts{display:flex;gap:26px;flex-wrap:wrap;margin-bottom:22px}
.fact{display:flex;flex-direction:column;gap:2px}
.fact-k{color:var(--muted);font-size:13px;font-weight:600}
.fact-v{font-weight:700;font-size:15px}

.show-grid{display:grid;grid-template-columns:1fr 320px;gap:34px;padding-block:20px 10px;align-items:start}
.show-desc h2,.seances h2{font-size:22px;font-weight:800;margin:0 0 14px}
.rte{color:#312a3a;font-size:16.5px;line-height:1.85}
.rte strong{color:var(--ink)}
.show-aside{position:sticky;top:88px}
.aside-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:10px;text-align:center}
.aside-price-k{color:var(--muted);font-size:13px;font-weight:600}
.aside-price-v{font-size:26px;font-weight:800;color:var(--plum)}
.aside-note{color:var(--muted);font-size:12.5px;margin:4px 0 0}

/* seance table */
.seances{padding-block:26px 60px}
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);background:var(--card);box-shadow:var(--shadow-sm)}
.seance-table{width:100%;border-collapse:collapse;min-width:640px}
.seance-table th,.seance-table td{padding:15px 16px;text-align:start;border-bottom:1px solid var(--line);font-size:15px}
.seance-table thead th{background:#faf7f3;font-weight:700;color:var(--muted);font-size:13.5px}
.seance-table tbody tr:last-child td{border-bottom:0}
.seance-table tbody tr:hover{background:#fbf8f4}

/* footer */
.site-footer{background:#211a2b;color:#cfc7d6;padding-block:50px 22px;margin-top:24px}
.footer-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr;gap:36px}
.footer-col{min-width:0}
.foot-brand{font-weight:800;color:#fff;font-size:19px;margin-bottom:12px}
.foot-desc{max-width:360px;margin:0;font-size:14px;line-height:1.85;color:#a99fb4}
.footer-title{color:#fff;font-size:15px;font-weight:700;margin:0 0 15px;padding-bottom:9px;
  border-bottom:1px solid rgba(255,255,255,.12)}
.footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.footer-links a,.footer-links span{color:#b4aabf;font-size:14px;transition:color .15s ease}
.footer-links a:hover{color:var(--gold)}
.footer-links span{cursor:default}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin-top:36px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1)}
.foot-copy,.foot-disclaimer{font-size:13px;color:#8b8199}
.footer-legal-links{font-size:13px;color:#8b8199;display:flex;gap:6px;flex-wrap:wrap;align-items:center;justify-content:center}
.footer-legal-links a{color:#cfc7d6;font-weight:600}
.footer-legal-links a:hover{color:var(--gold)}

/* footer timing links row */
.footer-timing{display:flex;flex-wrap:wrap;align-items:center;gap:8px 16px;
  margin-top:30px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1)}
.footer-timing-label{color:#8b8199;font-weight:700;font-size:13px}
.footer-timing a{color:#cfc7d6;font-size:14px;font-weight:600}
.footer-timing a:hover{color:var(--gold)}

/* hub (timing) landing pages */
.hub{padding-block:6px 50px}
.hub .breadcrumb{padding-block:18px 2px}
.hub-title{font-size:clamp(26px,4vw,38px);font-weight:800;margin:8px 0 10px;line-height:1.2}
.hub-intro{color:var(--muted);font-size:17px;max-width:760px;margin:0 0 22px;line-height:1.7}
.hub .results-head{margin-bottom:18px}
.hub-empty{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px;box-shadow:var(--shadow-sm);text-align:center;color:var(--muted)}
.hub-empty p{margin:0 0 16px;font-size:17px}
.hub-empty-links{list-style:none;margin:0;padding:0;display:flex;gap:10px 18px;flex-wrap:wrap;justify-content:center}
.hub-empty-links a{color:var(--plum);font-weight:700;text-decoration:underline}
.artist-list-section{margin-top:40px;border-top:1px solid var(--line);padding-top:26px}
.artist-list-section h2{font-size:20px;font-weight:800;margin:0 0 16px}
.artist-list{list-style:none;margin:0;padding:0;columns:3;column-gap:28px}
.artist-list li{margin:0 0 9px;break-inside:avoid}
.artist-list a{color:var(--ink);font-size:14.5px}
.artist-list a:hover{color:var(--plum);text-decoration:underline}
@media(max-width:780px){.artist-list{columns:2}}
@media(max-width:480px){.artist-list{columns:1}}

/* static / legal pages */
.static{padding-block:6px 46px}
.static-inner{max-width:820px}
.static .breadcrumb{padding-block:18px 2px}
.static-title{font-size:clamp(26px,4vw,38px);font-weight:800;margin:8px 0 16px;line-height:1.2}
.static-updated{color:var(--muted);font-size:14px;margin:0 0 22px}
.static-body h2{font-size:20px;font-weight:800;margin:26px 0 10px}
.static-body p{margin:0 0 14px}
.static-body a{color:var(--plum);text-decoration:underline}

/* ===== magazine (editorial layout) ===== */
.mag-index{padding-block:6px 50px}
.mag-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px;margin-top:8px}
.mag-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;box-shadow:var(--shadow-sm);transition:transform .15s ease,box-shadow .2s ease}
.mag-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.mag-card-media{display:block;aspect-ratio:16/9;overflow:hidden;background:#efe9e2}
.mag-card-media img{width:100%;height:100%;object-fit:cover}
.mag-card-body{padding:16px 18px 18px;display:flex;flex-direction:column;gap:8px;flex:1}
.mag-card-date{color:var(--gold-d);font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.4px}
.mag-card-title{font-size:19px;margin:0;line-height:1.3;font-weight:800}
.mag-card-title a:hover{color:var(--plum)}
.mag-card-desc{color:var(--muted);font-size:14px;margin:0;flex:1;
  display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.mag-card-link{color:var(--plum);font-weight:700;font-size:14px;margin-top:2px}
.mag-subnav{margin:-6px 0 22px}
.mag-subnav-link{display:inline-block;background:var(--plum);color:#fff;font-weight:700;font-size:15px;padding:9px 18px;border-radius:999px;text-decoration:none;box-shadow:var(--shadow-sm)}
.mag-subnav-link:hover{background:var(--plum-d)}
.mag-section-title{font-size:22px;font-weight:800;margin:26px 0 16px}
.mag-index .mag-section-title:first-of-type{margin-top:8px}
.landing-page{padding-block:6px 50px}
.landing-count{color:var(--muted);font-size:15px;margin:4px 0 18px}
.landing-empty{background:var(--bg);border-left:3px solid var(--gold);border-radius:6px;padding:10px 14px;color:var(--muted);font-style:italic;font-size:14px;margin:0 0 18px}
.landing-related{margin-top:26px;padding-top:16px;border-top:1px solid var(--line);color:var(--muted);font-size:14px}

/* News Layout — раздел новостей */
.news-hub{padding-block:6px 50px}
.news-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:22px;margin-top:10px}
.news-card{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;box-shadow:var(--shadow-sm);transition:transform .15s ease,box-shadow .2s ease}
.news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.news-card-media{display:block;aspect-ratio:16/9;overflow:hidden;background:#efe9e2}
.news-card-media img{width:100%;height:100%;object-fit:cover}
.news-card-body{padding:14px 16px 16px;display:flex;flex-direction:column;gap:7px;flex:1}
.news-card-kicker{color:var(--gold-d);font-size:11.5px;font-weight:800;letter-spacing:.5px}
.news-card-title{font-size:17px;line-height:1.35;margin:0;flex:1}
.news-card-title a{color:var(--ink);text-decoration:none}
.news-card-title a:hover{color:var(--plum)}
.news-card-date{color:var(--muted);font-size:12.5px;font-weight:600}
.news-article{padding-block:6px 56px}
.news-wrap{max-width:720px}
.news-article .breadcrumb{padding-block:18px 2px}
.news-kicker{display:inline-block;background:var(--gold);color:#fff;font-size:12.5px;font-weight:800;letter-spacing:.5px;padding:4px 12px;border-radius:999px;margin-bottom:8px}
.news-headline{font-size:clamp(26px,4.5vw,38px);font-weight:800;line-height:1.22;margin:6px 0 8px}
.news-dateline{color:var(--muted);font-size:14px;font-weight:600;margin:0 0 18px}
.news-hero{margin:0 0 22px;border-radius:var(--radius);overflow:hidden}
.news-hero img{width:100%;height:auto;display:block}
.news-lede{font-size:19px;line-height:1.6;font-weight:600;color:var(--ink)}
.news-body.rte p{margin:0 0 14px;line-height:1.75}
.news-cta{display:inline-block;background:var(--plum);color:#fff;font-weight:800;padding:11px 22px;border-radius:999px;text-decoration:none;box-shadow:var(--shadow-sm)}
.news-cta:hover{background:var(--plum-d)}
.news-related{font-size:14px;color:var(--muted);border-top:1px solid var(--line);padding-top:14px;margin-top:20px}
.news-back{margin-top:22px}
.news-back a{color:var(--plum);font-weight:700;text-decoration:none}

.mag-article{padding-block:6px 56px}
.mag-wrap{max-width:760px}
.mag-article .breadcrumb{padding-block:18px 2px}
.mag-title{font-size:clamp(28px,5vw,42px);font-weight:800;line-height:1.2;margin:8px 0 10px}
.mag-byline{color:var(--muted);font-size:14.5px;margin:0 0 22px}
.mag-hero{margin:0 0 26px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.mag-hero img{width:100%;height:auto;display:block}
.mag-body{font-size:18px;line-height:1.9;color:#2c2536}
.mag-body h2{font-size:24px;font-weight:800;margin:32px 0 12px;color:var(--ink);line-height:1.25}
.mag-body h3{font-size:20px;font-weight:700;margin:24px 0 10px}
.mag-body p{margin:0 0 18px}
.mag-body a{color:var(--plum);text-decoration:underline}
.mag-body ul{margin:0 0 18px;padding-inline-start:22px;display:flex;flex-direction:column;gap:10px}
.mag-body blockquote{margin:0 0 18px;padding:12px 18px;border-inline-start:4px solid var(--gold);
  background:#faf7f3;border-radius:0 10px 10px 0;color:#4a4356}
.mag-body figure{margin:0 0 22px}
.mag-body figure img{width:100%;border-radius:var(--radius)}
.mag-picks li{line-height:1.7}
.mag-buy{white-space:nowrap;font-weight:700}
.faq-item{border:1px solid var(--line);border-radius:12px;background:var(--card);margin:0 0 12px;overflow:hidden;box-shadow:var(--shadow-sm)}
.faq-item summary{cursor:pointer;list-style:none;padding:16px 20px;font-weight:700;font-size:17px;color:var(--ink);position:relative;padding-inline-start:46px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::before{content:"+";position:absolute;inset-inline-start:18px;top:50%;transform:translateY(-50%);width:22px;height:22px;line-height:22px;text-align:center;background:var(--plum);color:#fff;border-radius:50%;font-weight:800;font-size:16px}
.faq-item[open] summary::before{content:"–"}
.faq-item[open] summary{color:var(--plum)}
.faq-answer{padding:0 20px 18px 20px;line-height:1.75;color:var(--ink)}
.faq-answer a{color:var(--plum);font-weight:700}
.faq-foot{margin-top:22px;padding-top:16px;border-top:1px solid var(--line);color:var(--muted);font-size:15px}
.faq-hint{font-size:13px;color:var(--muted);margin:10px 0 0;line-height:1.5;opacity:.85}
.faq-hint a{color:var(--muted);text-decoration:underline;font-weight:600}
.faq-hint a:hover{color:var(--plum);opacity:1}
.faq-hint-center{text-align:center;margin-top:18px}
.mag-sect{color:var(--gold-d);font-weight:700;font-size:13px}
.mag-note{display:block;margin-top:10px;padding:10px 14px;background:var(--bg);border-left:3px solid var(--gold);border-radius:6px;color:var(--muted);font-style:italic;font-size:14px}
.mag-picks li{line-height:1.7;margin-bottom:4px}
.mag-back{margin-top:30px;padding-top:20px;border-top:1px solid var(--line)}
.mag-back a{color:var(--plum);font-weight:700}
@media(max-width:860px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .foot-desc{max-width:none}
}
@media(max-width:560px){
  .footer-grid{grid-template-columns:1fr;gap:26px}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px}
}

/* responsive */
@media(max-width:860px){
  .show-hero-inner{grid-template-columns:1fr}
  .show-grid{grid-template-columns:1fr}
  .show-aside{position:static}
  .seance-table{min-width:0}
  .seance-table thead{display:none}
  .seance-table,.seance-table tbody,.seance-table tr,.seance-table td{display:block;width:100%}
  .seance-table tr{border-bottom:1px solid var(--line);padding:8px 0}
  .seance-table td{border:0;padding:7px 16px;display:flex;justify-content:space-between;gap:12px;align-items:center}
  .seance-table td::before{content:attr(data-th);color:var(--muted);font-weight:700;font-size:13px}
  .seance-table td:last-child{justify-content:flex-start}
  .seance-table td:last-child .btn{width:100%}
}
@media(max-width:560px){
  .hero-inner{padding:44px 20px 38px}
  .grid{grid-template-columns:1fr;gap:18px}
  .header-inner{height:60px}
}

/* ===== accessibility widget ===== */
.a11y-widget{position:fixed;bottom:20px;left:20px;z-index:1000;font-family:'Rubik',Arial,sans-serif}
.a11y-btn{width:54px;height:54px;border-radius:50%;border:0;cursor:pointer;background:var(--plum);color:#fff;
  display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(0,0,0,.28);transition:transform .15s ease}
.a11y-btn:hover{transform:scale(1.07)}
.a11y-btn:focus-visible{outline:3px solid var(--gold);outline-offset:2px}
.a11y-menu{position:absolute;bottom:66px;left:0;width:280px;max-width:calc(100vw - 40px);background:#fff;color:#181320;
  border-radius:16px;box-shadow:0 18px 44px rgba(0,0,0,.3);border:1px solid #e5e0da;overflow:hidden}
.a11y-menu[hidden]{display:none}
.a11y-header{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;background:var(--plum);color:#fff}
.a11y-header h3{margin:0;font-size:16px;font-weight:700}
.a11y-close-btn{background:transparent;border:0;color:#fff;font-size:26px;line-height:1;cursor:pointer;padding:0 4px}
.a11y-close-btn:focus-visible{outline:2px solid var(--gold);outline-offset:2px;border-radius:4px}
.a11y-tools{padding:12px;display:flex;flex-direction:column;gap:8px}
.a11y-tool{text-align:start;padding:11px 14px;border:1px solid #e5e0da;background:#faf7f3;border-radius:10px;
  font-family:inherit;font-size:14.5px;font-weight:600;color:#181320;cursor:pointer;transition:all .12s ease}
.a11y-tool:hover{border-color:var(--plum);background:#fff}
.a11y-tool:focus-visible{outline:2px solid var(--plum);outline-offset:1px}
.a11y-tool[aria-pressed="true"]{background:var(--plum);border-color:var(--plum);color:#fff}
.a11y-reset{background:#fff;border-color:#d9b3c2;color:var(--plum)}
.a11y-reset:hover{background:#fbf1f5;border-color:var(--plum)}
.a11y-footer{padding:10px 16px 14px;border-top:1px solid #eee;color:#7a7385;text-align:center;font-size:12px}

/* ===== accessibility states (applied on <html>) ===== */
html.a11y-underline a{text-decoration:underline !important}
html.a11y-readable, html.a11y-readable body, html.a11y-readable :not(.a11y-btn):not(.a11y-btn *){
  font-family:'Arial',sans-serif !important}
html.a11y-readable p,html.a11y-readable li,html.a11y-readable .rte{line-height:1.95 !important;letter-spacing:.02em}
html.a11y-invert{filter:invert(1) hue-rotate(180deg)}
html.a11y-invert img{filter:invert(1) hue-rotate(180deg)}
html.a11y-contrast-high,html.a11y-contrast-high body{background:#000 !important}
html.a11y-contrast-high .card,html.a11y-contrast-high .aside-card,html.a11y-contrast-high .table-wrap,
html.a11y-contrast-high .search-box input,html.a11y-contrast-high .chip,html.a11y-contrast-high .seance-table thead th{
  background:#000 !important;border-color:#fff !important}
html.a11y-contrast-high h1,html.a11y-contrast-high h2,html.a11y-contrast-high h3,html.a11y-contrast-high p,
html.a11y-contrast-high span,html.a11y-contrast-high li,html.a11y-contrast-high td,html.a11y-contrast-high th,
html.a11y-contrast-high .card-title,html.a11y-contrast-high .hero-title,html.a11y-contrast-high label{color:#fff !important}
html.a11y-contrast-high a,html.a11y-contrast-high .card-price,html.a11y-contrast-high .aside-price-v{color:#ffe14d !important}
html.a11y-contrast-high .btn,html.a11y-contrast-high .btn-primary{background:#ffe14d !important;color:#000 !important;box-shadow:none !important}
html.a11y-contrast-high .card-badge,html.a11y-contrast-high .pill{background:#ffe14d !important;color:#000 !important}
@media(max-width:560px){
  .a11y-widget{bottom:14px;left:14px}
}