:root{
  --bg1:#5d3f6a;
  --bg2:#000;
  --accent:#B895B3;
  --text:#fff;
  --panel:#f5e6f0;
  --panelText:#5d3f6a;
  --radius:12px;
  --shadow:0 10px 30px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
.card-img{
  width: 70%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
/* =========================
   SÜNDMUSED: SEARCH BAR
   (only for events page)
========================= */

.events-search{
  width: min(1200px, 92vw);
  margin: 14px auto 16px;
  display: block;
  position: relative;
  z-index: 2000; /* чтобы не пряталось под другими блоками */
}

.events-search__input{
  width: 100%;
  display: block;
  padding: 14px 16px;
  border-radius: 14px;

  /* делаем контрастнее, чтобы не "сливалось" */
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.30);
  color: #fff;

  outline: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.events-search__input:focus{
  border-color: rgba(184,149,179,.75);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.events-search__input::placeholder{
  color: rgba(255,255,255,.70);
}

.events-search__info{
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}


body{
  margin:0;
  font-family: Verdana, sans-serif;
  background: linear-gradient(var(--bg1), var(--bg2));
  color: var(--text);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

h1, h2, h3{ margin:0; }

h1{
  color:var(--accent);
  text-align:center;
  font-size:2em;
  padding-top:20px;
}

h2{
  color:var(--accent);
  text-align:center;
  font-size:1.5em;
  padding-top:20px;
}

h3{
  color:var(--text);
  text-align:center;
}

header{
  display:flex;
  align-items:center;
  padding:10px 20px;
  background:#000;
  opacity:.7;
}
#nav0{
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  background: linear-gradient(
    180deg,
    rgba(15,15,30,.92),
    rgba(10,10,20,.88)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

#nav0 h1{
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #fff;
  text-shadow:
    0 2px 10px rgba(0,0,0,.45),
    0 0 18px rgba(184,149,179,.4);
  white-space: nowrap;
}

/* Menu */

#nav0 ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */

#nav0 ul li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(184,149,179,.25);
  background: rgba(255,255,255,.05);
  color: #b895b3;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  transition: all .25s ease;
  backdrop-filter: blur(6px);
}

/* Hover */

#nav0 ul li a:hover{
  background: rgba(184,149,179,.22);
  border-color: rgba(184,149,179,.6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}

/* Active */

#nav0 ul li a.active{
  background: linear-gradient(
    135deg,
    rgba(184,149,179,.45),
    rgba(140,110,160,.35)
  );
  border-color: rgba(184,149,179,.8);
  color: #fff;
  box-shadow:
    0 10px 26px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.25);
}

a{
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

ul li a:hover{
  color:#fff;
  background: var(--bg1);
  padding:5px;
  border-radius:6px;
}

ul{
  list-style:none;
  padding:0;
  margin:0;
}

ul li{
  background: var(--panel);
  margin:10px 0;
  padding:10px;
  border-radius:8px;
  text-align:left;
  color: var(--panelText);
}

div.card{
  background:#fff;
  color: var(--panelText);
  border:3px solid var(--bg1);
  border-radius:10px;
  padding:15px;
  text-align:center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.product-img{
  max-width:100%;
  height:auto;
  margin-bottom:10px;
  border-radius:10px;
}

.products{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

form{
  background: var(--panel);
  padding:20px;
  border-radius:12px;
  color: var(--panelText);
}

form dt{ font-weight:bold; }

form input[type="text"],
form input[type="number"],
form input[type="submit"]{
  width:100%;
  padding:10px;
  margin:6px 0;
  border:1px solid #ddd;
  border-radius:10px;
}

form input[type="submit"]{
  background: var(--bg1);
  color:#fff;
  cursor:pointer;
  border:none;
}

form input[type="submit"]:hover{
  background:#3f2a47;
}

footer{
  background: linear-gradient(
    180deg,
    rgba(15,15,30,.92),
    rgba(10,10,20,.88)
  );
  color: var(--panelText);
  padding:6px;
  text-align:center;
  margin-top:auto;
  flex-shrink:0;
}

.services-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  width:min(1200px, 92vw);
  margin:40px auto;
}

.service-block{
  background:#2c1f3a;
  color: var(--panel);
  border-radius:12px;
  padding:25px 20px;
  width:350px;
  min-height:180px;
  text-align:center;
  transition: .3s ease;
  transition-property: transform, background;
}

.service-block h3{
  margin:0 0 15px;
  font-size:20px;
  font-weight:bold;
  color: var(--panel);
}

.service-block p{
  margin:0;
  font-size:15px;
  line-height:1.5;
}

.service-block:hover{
  transform: translateY(-5px);
  background:#3a2a52;
  cursor:pointer;
}

.events-page{
  width: min(1200px, 92vw);
  margin: 0 auto 40px;
}

.events-page .rss__header{
  margin:10px 0 22px;
  text-align:center;
}

.events-page .rss__title a{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.events-page .events-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}

.events-page .event-card{
  border-radius:16px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition:.2s ease;
  transition-property: transform, box-shadow, border-color;
}

.events-page .event-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

.events-page .event-media{
  display:block;
  position:relative;
  aspect-ratio:16/9;
  background: rgba(0,0,0,.35);
  overflow:hidden;
}

.events-page .event-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: .35s ease;
  transition-property: transform, filter;
  filter: saturate(1.05) contrast(1.05);
}

.events-page .event-card:hover .event-media img{
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.1);
}

.events-page .event-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.35));
}

.events-page .event-media--placeholder{
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.75);
  font-weight:600;
}

.events-page .event-body{ padding:14px 14px 16px; }

.events-page .event-title{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.25;
  text-align:left;
}

.events-page .event-title a{
  color:#fff;
  font-weight:800;
}

.events-page .event-title a:hover{
  background:transparent;
  padding:0;
}

.events-page .event-meta{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:12.5px;
  color: rgba(255,255,255,.75);
  margin-bottom:10px;
}

.events-page .event-dot{ opacity:.6; }

.events-page .event-desc{
  color: rgba(255,255,255,.85);
  font-size:13.5px;
  line-height:1.45;
  max-height:3.9em;
  overflow:hidden;
  position:relative;
}

.events-page .event-desc::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:1.4em;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.6));
}

.events-page .event-desc img{ display:none; }

.events-page .event-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
  transition-property: background, transform, border-color;
}

.events-page .event-btn:hover{
  background: rgba(184,149,179,.18);
  border-color: rgba(184,149,179,.45);
  transform: translateY(-1px);
  padding:10px 12px;
}

.gallery-page{
  width: min(1400px, 92vw);
  margin: 0 auto 40px;
}

.gallery-empty{
  margin:18px auto 0;
  padding:16px 18px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  text-align:center;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:18px;
}

.gallery-card{
  display:block;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 18px 45px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  transition:.22s ease;
  transition-property: transform, box-shadow, border-color, background;
}

.gallery-card:hover{
  background: rgba(255,255,255,.10);
  padding:0;
  border-radius:18px;
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.28);
  box-shadow:
    0 26px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.gallery-media{
  position:relative;
  aspect-ratio:4/3;
  background: rgba(0,0,0,.35);
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.gallery-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
  transition:.40s ease;
  transition-property: transform, filter;
  filter: saturate(1.08) contrast(1.08);
}

.gallery-card:hover .gallery-thumb{
  transform: scale(1.10);
  filter: saturate(1.18) contrast(1.12);
}

.gallery-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.35));
}

.gallery-media--placeholder{
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.75);
  font-weight:700;
}

.gallery-body{
  padding:14px 14px 16px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.25));
}

.gallery-title{
  color:#fff;
  font-weight:800;
  font-size:15.5px;
  line-height:1.25;
  max-height:2.6em;
  overflow:hidden;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.gallery-cta{
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.28);
  color:#fff;
  font-weight:800;
  box-shadow:
    0 10px 22px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
  transition:.2s ease;
  transition-property: background, transform, border-color, box-shadow;
}

.gallery-card:hover .gallery-cta{
  background: rgba(184,149,179,.22);
  border-color: rgba(184,149,179,.55);
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.14);
}

@media (max-width: 1200px){
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px){
  .events-page .events-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .products{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:16px;
  }
  .service-block{ width:min(420px, 92vw); }
}

@media (max-width: 850px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px){
  #nav0{
    flex-direction:column;
    gap:10px;
    padding:12px;
  }
  #nav0 h1{ font-size:18px; }
  #nav0 ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }
  #nav0 ul li a{
    padding:8px 14px;
    font-size:14px;
  }
}

@media (max-width: 640px){
  .events-page .events-grid{ grid-template-columns: 1fr; }
  form{ padding:16px; }
  ul li{ margin:8px 0; padding:10px; }
}

@media (max-width: 520px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .products{ grid-template-columns: 1fr; }
  h1{ font-size:1.7em; }
  h2{ font-size:1.3em; }
}



/* =========================
   HOME INTRO — сделать особенным
   (НЕ ломает сетку/структуру)
========================= */

/* сама карточка приветствия */
.home-page #home-intro{
  position: relative;
  padding: 22px 18px 18px;                 /* чуть больше воздуха */
  border-radius: 20px;

  /* делаем более "премиум" */
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(184,149,179,.28), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06));

  border: 1px solid rgba(184,149,179,.30);
  box-shadow:
    0 18px 50px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* аккуратная подсветка сверху */
.home-page #home-intro::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 20px;
  pointer-events:none;
  background: linear-gradient(to bottom, rgba(255,255,255,.10), rgba(255,255,255,0));
  opacity: .9;
}

/* тонкая акцентная полоса слева */
.home-page #home-intro::after{
  content:"";
  position:absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(184,149,179,.95), rgba(93,63,106,.65));
  box-shadow: 0 0 18px rgba(184,149,179,.35);
}

/* заголовок приветствия — больше и ярче */
.home-page #home-intro .home-title{
  font-size: 24px;
  letter-spacing: .2px;
  margin-bottom: 12px;
  color: #fff;
  text-shadow:
    0 2px 10px rgba(0,0,0,.45),
    0 0 18px rgba(184,149,179,.35);
}

/* текст приветствия — чуть крупнее */
.home-page #home-intro .home-text{
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

/* мобильная версия — аккуратно уменьшаем */
@media (max-width: 980px){
  .home-page #home-intro{
    padding: 18px 14px 16px;
    border-radius: 18px;
  }
  .home-page #home-intro::after{
    left: 10px;
    top: 10px;
    bottom: 10px;
  }
  .home-page #home-intro .home-title{
    font-size: 20px;
  }
  .home-page #home-intro .home-text{
    font-size: 14.8px;
  }
}

.home-page{
  width: min(1200px, 92vw);
  margin: 18px auto 40px;
}

.home-page .home-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.home-page .home-card{
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 30px rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
}

.home-page .home-title{
  margin: 0 0 10px;
  padding-top: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.home-page .home-text{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  font-size: 14.5px;
}

.home-page #home-start .checklist li{
  background: rgba(245,230,240,0.95);
  color: var(--panelText);
  border: 1px solid rgba(0,0,0,0.08);
}

.home-page #home-start .checklist a{
  color: #111;
  font-weight: 800;
}

.home-page #home-start .checklist a:hover{
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.home-page .home-note{
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  font-size: 13.5px;
}

@media (max-width: 980px){
  .home-page .home-grid{
    grid-template-columns: 1fr;
  }
  .home-page .home-card{
    padding: 14px;
    border-radius: 16px;
  }
  .home-page .home-title{
    font-size: 18px;
  }
}
.home-grid{
  margin-top: 55px;
}


/* =========================
   MUSEUMS – FULL CARDS + MAP INSIDE EACH CARD
========================= */
.museums-page{
  width: min(1200px, 92vw);
  margin: 0 auto 40px;
}

.museums-hero{ margin: 18px 0 16px; }
.museums-hero__card{
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  color: #1f1f1f;
}
.museums-hero__title{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  color: #2c1f3a;
  text-align: left;
}
.museums-hero__text{ margin: 0 0 8px; color:#2b2b2b; line-height:1.5; }
.museums-hero__hint{ margin: 0; opacity:.8; font-size: 13.5px; }

/* grid */
.museums-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* card */
.museum-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  color:#1f1f1f;
  transition: .22s ease;
  transition-property: transform, box-shadow, border-color;
}
.museum-card:hover{
  transform: translateY(-5px);
  border-color: rgba(184,149,179,.65);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.museum-card__media{
  position:relative;
  height: 190px;
  background: rgba(0,0,0,.06);
  overflow:hidden;
}
.museum-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .35s ease;
}
.museum-card:hover .museum-card__media img{
  transform: scale(1.08);
}

.museum-card__chip{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.10);
  color: #2c1f3a;
}

.museum-card__body{ padding: 14px; }
.museum-card__title{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.22;
  color:#2c1f3a;
  text-align:left;
}
.museum-card__tag{
  margin:0 0 10px;
  font-size: 12.5px;
  color:#555;
}
.museum-card__text{
  margin:0 0 12px;
  font-size: 13.5px;
  line-height:1.45;
  color:#2b2b2b;
}

/* map inside card */
.museum-card__map{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  margin: 0 0 12px;
}
.museum-card__iframe{
  width:100%;
  height: 180px;
  border:0;
  display:block;
}

/* buttons */
.museum-card__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.museum-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  text-decoration:none;
  background: rgba(93,63,106,.12);
  border: 1px solid rgba(93,63,106,.25);
  color:#2c1f3a;
  transition:.2s ease;
  transition-property: transform, background, border-color;
}
.museum-btn:hover{
  background: rgba(184,149,179,.22);
  border-color: rgba(184,149,179,.55);
  transform: translateY(-1px);
}
.museum-btn.ghost{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
}

/* responsive */
@media (max-width: 980px){
  .museums-grid{ grid-template-columns: 1fr; }
  .museum-card__media{ height: 210px; }
  .museum-card__iframe{ height: 220px; }
}
@media (max-width: 520px){
  .museum-card__media{ height: 200px; }
  .museum-card__iframe{ height: 200px; }
}



/* =========================
   FULL WIDTH HERO BACKGROUND
   + right column stays visible
========================= */

/* hero занимает строку грида */
.home-page .home-hero{
  grid-column: 1 / -1;
  position: relative;
  padding: 50px 0 40px;
}

/* РАСТЯГИВАЕМ ФОН НА ВЕСЬ ЭКРАН */
.home-page .home-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width:100vw;
  height:100%;

  background: linear-gradient(
    to right,
    rgba(0,0,0,.45),
    rgba(0,0,0,.18)
  );

  z-index:-1;
}

/* ===== HERO: 2 колонки, НЕ друг на друге ===== */

/* Убираем прошлый “наезд” */
.home-page #home-start{ margin-top: 0 !important; }

/* Делаем hero ряд: слева приветствие, справа Alusta siit */
.home-page .home-hero{
  grid-column: 1 / -1;
  position: relative;
  padding: 50px 0 35px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* как у твоего home-grid */
  gap: 18px;
  align-items: start;
}

/* фон на всю ширину экрана */
.home-page .home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  left:50%;
  transform: translateX(-50%);
  width:100vw;
  height:100%;
  background: linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,.18));
  z-index:-1;
}

/* внутри hero кладём именно эти 2 блока */
.home-page .home-hero #home-intro{ grid-column: 1; }
.home-page .home-hero #home-start{ grid-column: 2; }

/* Приветствие */
.home-page .home-hero #home-intro{
  padding: 42px 30px;
  border-radius: 20px;
  background: rgba(15,15,30,.55);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 25px 70px rgba(0,0,0,.45);
}

.home-page .home-hero #home-intro .home-title{
  text-align:left;
  font-size: clamp(32px, 4vw, 48px);
  line-height:1.05;
  margin:0 0 16px;
  color:#fff;
}

.home-page .home-hero #home-intro .home-text{
  font-size: 17px;
  line-height:1.6;
  max-width: 62ch;
  color: rgba(255,255,255,.9);
}

/* Alusta siit — такой же высоты/стиля, но справа */
.home-page .home-hero #home-start{
  border-radius: 20px;
  padding: 18px 18px
}

/* ===== VIITED (ALLIKAD) ===== */

#viited{
  width: min(800px, 92vw);
  margin: 0 auto;

  padding: 20px 24px;
  border-radius: 14px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);

  backdrop-filter: blur(8px);
}

/* список */
#viited ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* элементы */
#viited li{
  background: rgba(255,255,255,.85);
  color: #2c1f3a;

  margin: 10px 0;
  padding: 12px 14px;

  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);

  transition: .2s ease;
}

/* hover */
#viited li:hover{
  transform: translateX(4px);
  background: rgba(255,255,255,.95);
}

/* ссылки */
#viited a{
  color: #2c1f3a;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

/* адаптив */
@media (max-width: 600px){
  #viited{
    padding: 16px;
  }
}
