/* ==========================================================================
   Moulin Rouge — modern theme (v2)
   Dark base, red accents. Restyles the original Drupal markup.
   Applied to the EN version first (see Layout.astro `modern` flag).
   ========================================================================== */

:root {
  --bg:        #0b0a0c;
  --bg-2:      #141115;
  --panel:     #17131a;
  --panel-2:   #1e1820;
  --line:      #2c232f;
  --red:       #e10f1e;
  --red-2:     #b00d18;
  --red-glow:  rgba(225, 15, 30, .45);
  --gold:      #d9b16b;
  --text:      #f2eef0;
  --muted:     #a89ba6;
  --maxw:      1200px;
  --radius:    14px;
  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-disp: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* layered background: deep base + soft red glow + faint texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(225,15,30,.16), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(120,10,40,.12), transparent 55%),
    linear-gradient(180deg, #100c12 0%, var(--bg) 40%, #08070a 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .04;
  background-image:
    repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

img { max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: #ff5a66; }

/* ---------- typography ------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-disp); font-weight: 700; line-height: 1.2; color: #fff; }
h1.page-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 .5em;
  letter-spacing: .5px;
}
h1.page-title::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  margin-top: .45rem;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 1.6em 0 .5em; }
h3 { font-size: 1.3rem; margin: 1.3em 0 .4em; color: var(--gold); }
p  { margin: 0 0 1.1em; color: var(--text); }
strong { color: #fff; }

/* ---------- 18+ age gate ----------------------------------------------- */
#explicit-content {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  background:
    radial-gradient(700px 500px at 50% 30%, rgba(225,15,30,.20), transparent 60%),
    rgba(6, 5, 7, .94);
  backdrop-filter: blur(8px);
  padding: 2rem;
}
.explicit-text {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff;
  max-width: 18ch;
}
.explicit-button {
  cursor: pointer;
  min-width: 150px;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .2s, background .2s;
}
#yes-i-can {
  background: linear-gradient(180deg, var(--red), var(--red-2));
  color: #fff;
  box-shadow: 0 8px 26px var(--red-glow);
}
#yes-i-can:hover { transform: translateY(-2px); box-shadow: 0 12px 34px var(--red-glow); }
#better-luck-next-time {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
#better-luck-next-time:hover { color: #fff; border-color: var(--muted); }
#explicit-content .explicit-button { display: inline-block; }
#explicit-content > #yes-i-can,
#explicit-content > #better-luck-next-time { margin: 0 .4rem; }

/* ---------- header ----------------------------------------------------- */
.wrapper-main {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 14, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
header.wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav order";
  align-items: center;
  gap: .6rem .9rem;
}

#logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  width: auto; height: auto;
  text-indent: 0;
  position: static;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: .5px;
  color: #fff;
  white-space: nowrap;
}
#logo::before {
  content: "Moulin";
  color: #fff;
}
#logo::after {
  content: "Rouge";
  color: var(--red);
  margin-left: .35ch;
  text-shadow: 0 0 18px var(--red-glow);
}

/* language switcher */
.language-switcher-locale-url {
  grid-area: order;
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  order: 2;
}
.language-switcher-locale-url li { margin: 0; }
.language-switcher-locale-url .language-link {
  display: block;
  padding: .25rem .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 7px;
}
.language-switcher-locale-url .language-link:hover { color: #fff; background: var(--panel-2); }
.language-switcher-locale-url .active .language-link,
.language-switcher-locale-url .language-link.active { color: #fff; background: var(--red-2); }

/* order button area */
#phone.ph {
  grid-area: order;
  display: flex;
  align-items: center;
  justify-self: end;
}
.btn-order {
  display: inline-block;
  background: linear-gradient(180deg, var(--red), var(--red-2));
  color: #fff !important;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 6px 22px var(--red-glow);
  transition: transform .15s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}
/* compact variant inside the header so the nav has room */
#phone.ph .btn-order { font-size: .8rem; padding: .6rem 1rem; }
.btn-order:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 10px 30px var(--red-glow); color: #fff !important; }

/* header right cluster: stack lang over order on its own column */
header.wrapper {
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: "logo nav lang order";
}
.language-switcher-locale-url { grid-area: lang; justify-self: end; }
#phone.ph { grid-area: order; }

/* main navigation */
#main-menu { grid-area: nav; justify-self: center; }
#main-menu > ul.menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-menu > ul.menu > li { position: relative; }
#main-menu > ul.menu > li > a,
#main-menu > ul.menu > li > span {
  display: block;
  padding: .55rem .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
#main-menu > ul.menu > li > a:hover,
#main-menu > ul.menu > li.active-trail > a,
#main-menu > ul.menu > li.active-trail > span { color: #fff; background: var(--panel-2); }
#main-menu > ul.menu > li > a::after,
#main-menu li.expanded > a::after {
  /* underline accent on hover via separate rule below */
}

/* submenus */
#main-menu ul.menu ul.menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: .4rem 0 0;
  padding: .4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
#main-menu li:hover > ul.menu { opacity: 1; visibility: visible; transform: translateY(0); }
#main-menu ul.menu ul.menu li a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
}
#main-menu ul.menu ul.menu li a:hover { color: #fff; background: var(--red-2); }

/* hamburger (mobile only) */
.nav-toggle {
  display: none;
  grid-area: order;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------- content ---------------------------------------------------- */
#content.wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
#article { animation: fade .4s ease both; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tabs { display: none; }

#breadcrumb { margin: -0.2rem 0 1.8rem; }
.breadcrumb { font-size: .85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }

.block { margin-bottom: 1.4rem; }
.block-title:empty { display: none; }

/* generic content cards */
#article .node .content,
#article .block-block {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
#article .block-block + .block-block { margin-top: 1.2rem; }

#article ul { padding-left: 1.2rem; }
#article li { margin: .35rem 0; }

table { width: 100%; border-collapse: collapse; }
td, th { padding: .6rem .8rem; border-bottom: 1px solid var(--line); }

input, textarea, select {
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: .6rem .8rem;
  font: inherit;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--red); }

/* ---------- home hero -------------------------------------------------- */
.hero {
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 7rem) 1.5rem;
  text-align: center;
}
.hero__title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 auto;
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero__sub {
  margin: 1rem auto 1.8rem;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: .02em;
}
.hero__cta { font-size: 1rem; padding: .9rem 2rem; }

/* ---------- home: teaser tiles ----------------------------------------- */
.index_menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  max-width: 560px;          /* compact row, not full-width hero cards */
  margin: .5rem 0 2.6rem;
  padding: 0;
}
.index_menu li { margin: 0; }
.index_menu a {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;        /* rectangular / landscape */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.index_menu img.indexpic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .5s;
}
.index_menu a:hover img.indexpic { transform: scale(1.07); filter: brightness(1.05); }
.index_menu br { display: none; }
.index_menu .b3-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .9rem .8rem .6rem;
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(8,5,9,.9));
}
.index_menu a::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color .3s;
}
.index_menu a:hover::after { border-color: var(--red); }

/* ---------- in-content media & headings -------------------------------- */
/* the dump uses many <h1> inside content as section headings — tame them */
#article .content h1 {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  margin: 1.6em 0 .5em;
  color: #fff;
}
#article .content h1 a { color: var(--red); }
/* floated inline-styled images: rounded + bordered, responsive on mobile */
#article .content img[style*="float"] {
  border-radius: 10px;
  border: 1px solid var(--line) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

/* ---------- news index (blog grid) ------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  transition: transform .2s, border-color .25s, box-shadow .25s;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 38px rgba(0,0,0,.5);
  color: var(--text);
}
.news-card__img {
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: brightness(.92);
  transition: filter .25s, transform .4s;
}
.news-card:hover .news-card__img { filter: brightness(1.04); transform: scale(1.04); }
.news-card__body { display: flex; flex-direction: column; gap: .5rem; padding: 1.1rem 1.2rem 1.3rem; flex: 1; }
.news-card__title {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.news-card__excerpt { font-size: .92rem; color: var(--muted); line-height: 1.55; flex: 1; }
.news-card__more { font-size: .85rem; font-weight: 700; color: var(--red); letter-spacing: .02em; }

/* ---------- single article --------------------------------------------- */
.article { max-width: 760px; }
.article__hero {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 1.6rem;
}
.article__body { font-size: 1.06rem; }
.article__body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 1.7em 0 .5em;
  color: #fff;
}
.article__body p { margin: 0 0 1.15em; }
.article__body .cta { margin-top: 1.8rem; }
.article__back { margin-top: 2rem; font-size: .9rem; }
.article__back a { color: var(--muted); }
.article__back a:hover { color: var(--red); }

/* ---------- static / service pages ------------------------------------- */
.page-prose { max-width: 820px; font-size: 1.05rem; }
.page-prose .lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #fff;
  margin-bottom: 1.6rem;
}
.page-prose h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 1.8em 0 .5em;
  color: #fff;
}
.page-prose h3 {
  font-size: 1.2rem;
  margin: 1.3em 0 .3em;
  color: var(--gold);
}
.page-prose p { margin: 0 0 1.1em; }
.page-prose .note { font-size: .9rem; color: var(--muted); }
.page-prose .cta { margin-top: 2rem; }

/* price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.4rem;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  padding: .85rem 1.1rem;
}
.price-table td { padding: .8rem 1.1rem; border-top: 1px solid var(--line); }
.price-table tbody tr:hover { background: rgba(225,15,30,.06); }
.price-table td:first-child { font-weight: 600; color: #fff; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--red); white-space: nowrap; }
.price-table td:nth-child(2) { color: var(--muted); white-space: nowrap; }
@media (max-width: 520px) {
  .price-table th:nth-child(2), .price-table td:nth-child(2) { display: none; }
}
/* 2-column variant (no duration column): 2nd cell is the price */
.price-table--2col td:nth-child(2) {
  color: var(--red);
  text-align: right;
  font-weight: 700;
}
@media (max-width: 520px) {
  .price-table--2col th:nth-child(2), .price-table--2col td:nth-child(2) { display: table-cell; }
}

/* ---------- video grid ------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.3rem;
  margin: 1.6rem 0;
}
.video-card { margin: 0; }
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}
.video-card figcaption {
  margin-top: .55rem;
  font-family: var(--font-disp);
  font-size: 1.05rem;
  color: var(--gold);
  text-align: center;
}

/* ---------- FAQ accordion ---------------------------------------------- */
.faq-list { max-width: 820px; margin-top: 1rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  position: relative;
  padding-right: 2.6rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--red); }
.faq-item p { margin: 0; padding: 0 1.2rem 1.1rem; color: var(--muted); }

/* ---------- reviews ---------------------------------------------------- */
.reviews-grid {
  columns: 3 300px;
  column-gap: 1.2rem;
  margin-top: 1.4rem;
}
.review-card {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 12px;
}
.review-card blockquote {
  margin: 0 0 .8rem;
  color: var(--text);
  font-size: .96rem;
  line-height: 1.6;
}
.review-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
  border-top: 1px solid var(--line);
  padding-top: .7rem;
}
.review-name { font-family: var(--font-disp); font-weight: 700; color: #fff; font-size: 1.02rem; }
.review-date { color: var(--muted); font-size: .8rem; white-space: nowrap; }
@media (max-width: 640px) { .reviews-grid { columns: 1; } }

/* ---------- contacts hero ---------------------------------------------- */
.contact-hero {
  text-align: center;
  padding: 2.2rem 1.5rem;
  margin-bottom: 1.5rem;
  background:
    radial-gradient(500px 240px at 50% 0%, rgba(225,15,30,.18), transparent 70%),
    linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-label { color: var(--muted); font-size: .95rem; margin: 0 0 .4rem; }
.contact-phone {
  display: inline-block;
  font-family: var(--font-disp);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 1px;
  text-shadow: 0 0 24px var(--red-glow);
}
.contact-phone:hover { color: var(--red) !important; }
.contact-sub { color: var(--muted); font-size: .9rem; margin: .5rem 0 0; }

/* ---------- girls / galleries ------------------------------------------ */
.view-content { display: grid; gap: 1.4rem; }
.views-row {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.views-row h3 {
  margin: 0 0 .8rem;
  color: #fff;
  font-size: 1.5rem;
}
.views-row h3::before {
  content: "✦";
  color: var(--red);
  margin-right: .5ch;
  font-size: .9em;
}
.views-field-field-images .field-content {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.field-content a.colorbox {
  display: block;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.field-content a.colorbox img {
  width: auto !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  transition: transform .35s, filter .35s;
}
.field-content a.colorbox:hover img { transform: scale(1.08); filter: brightness(1.08); }

/* ---------- lightbox --------------------------------------------------- */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,4,6,.92);
  backdrop-filter: blur(6px);
  padding: 2rem;
}
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.7); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(20,16,22,.7);
  border: 1px solid var(--line);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--red-2); }

/* ---------- footer ----------------------------------------------------- */
footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0a080b, #060507);
  margin-top: 2rem;
}
footer .wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
footer .copyright { color: var(--muted); font-size: .9rem; line-height: 1.9; }
footer .copyright a { color: var(--muted); }
footer .copyright a:hover { color: var(--red); }
footer .menu {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .menu a, footer .menu span { color: var(--text); font-size: .92rem; font-weight: 500; }
footer .menu a:hover { color: var(--red); }

/* ---------- responsive ------------------------------------------------- */
@media (max-width: 920px) {
  header.wrapper {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo lang toggle";
    gap: .75rem 1rem;
  }
  #phone.ph { display: none; }
  .nav-toggle { display: inline-flex; grid-area: toggle; justify-self: end; }
  #main-menu {
    grid-area: unset;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
  }
  #main-menu.open { display: block; }
  #main-menu > ul.menu { flex-direction: column; align-items: stretch; gap: .15rem; padding-top: .6rem; }
  #main-menu > ul.menu > li > a,
  #main-menu > ul.menu > li > span { padding: .7rem .6rem; }
  #main-menu ul.menu ul.menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin: 0 0 .4rem .8rem;
    background: transparent;
    padding: 0;
  }
  .language-switcher-locale-url { justify-self: end; }
}

@media (max-width: 720px) {
  .index_menu { grid-template-columns: 1fr 1fr; gap: .7rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  #content.wrapper { padding: 1.6rem 1rem 3rem; }
  #article .node .content, #article .block-block { padding: 1.2rem 1.1rem; }
  .field-content a.colorbox { height: 130px; }
  footer .wrapper { flex-direction: column; }
  /* unfloat inline-styled content images so text doesn't get crushed */
  #article .content img[style] {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 1rem !important;
    display: block;
  }
}
