/* ============================ */
/*        Общие сбросы         */
/* ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  scroll-padding-top: 70px;
  overflow-y: scroll;
}

/* Блокируем прокрутку страницы, когда меню открыто */
@supports selector(html:has(.nav.nav--active)) {
  html:has(.nav.nav--active) {
    overflow: hidden;
    height: 100%;
  }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Playfair Display', serif;
  color: #333;
  background: #fafafa;
}

/* ============================ */
/*         Контейнеры(Шапка)    */
/* ============================ */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.main-content {
  flex: 1;
}

/* ============================ */
/*           Заголовок          */
/* ============================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;                              /* растягиваем от левого до правого края */
  padding-right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  z-index: 1005;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo {
  font-family: 'Ephesis', cursive;
  font-weight: 200;
  font-size: 1.75rem;
  color: #111;
  letter-spacing: none;
}

.logo-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #333;
  margin-top: 0rem;
  letter-spacing: none;
  text-transform: lowercase;
}

/* ============================ */
/*      Социальные ссылки       */
/* ============================ */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 0%;
  overflow: visible;
  transition: transform 0.3s;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-link:hover {
  transform: scale(1.3);
}

/* ============================ */
/*           Навигация          */
/* ============================ */
.nav__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav__list a {
  position: relative;           /* нужно для ::after */
  text-decoration: none;
  color: #111;
  transition: color 0.3s;
}

.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;               /* смещаем чуть вниз от текста */
  height: 2px;
  width: 0;                   /* начальная ширина — 0 */
  background-color: #111;     /* цвет линии */
  transition: width 0.3s ease;
}

.nav__list a:hover::after {
  width: 100%;
}

.nav__list a:hover {
  color: #000;
}

/* Кнопка-бургер */
.nav-toggle {
  display: none;
  position: relative;
  width: 28px;       /* ширина бургер-иконки */
  height: 20px;      /* высота бургер-иконки */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

/* Полоски */
.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Активный бургер (крестик) */
.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Показываем меню, когда активно */
.nav.active {
  display: flex;
}


/* ============================ */
/*            Hero-блок         */
/* ============================ */

.hero {
  position: relative;
  background-size: cover;
  height: 100vh;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  z-index: 0;
}

/* Оптимизация под мобильные экраны */
@media (max-width: 768px) {
  .hero-bg {
    background-position: 50% 40%;
    background-size: cover;
    background-attachment: scroll;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  pointer-events: none;
  text-align: center;
}

.hero h1,
.hero p {
  position: relative;
  color: #000;
  text-shadow: none;
  -webkit-text-stroke: none;
}

.hero h1 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-weight: 300;
  font-size: 1.125rem;
} 

/* Стрелка «скролл вниз» */
.scroll-arrow {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
  transition: opacity 0.3s;
}

.scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-arrow svg {
  display: block;
  width: 32px;
  height: 32px;
  stroke: #000;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================ */
/*            О себе            */
/* ============================ */
.about{
  padding: 10rem 0;
  background: #f5f5f5;
}

.section-title {
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;                 /* расстояние между текстом и изображением */
  padding: 3rem  0;          /* вертикальные отступы */
  background-color: #f5f5f5; /* если нужен серый фон */
  flex-wrap: wrap;           /* делает адаптивным */
}

.about-text {
  flex: 0.8;                 /* текст занимает всё свободное место */
  color: #333;
  text-align: justify;
}

.about-text .section-title {
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.6;
}

.about-image img {
  max-width: 400px;        /* или любой другой размер */
  width: 100%;
  height: auto;
  border-radius: none;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px){
  .about-inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1rem;
  }

  .about-image img {
    max-width: 100%;
  }
}
/* ============================ */
/*           Услуги             */
/* ============================ */

.services,
.contact {
  padding: 4rem 0;
}

/* Убираем паддинг у li, чтобы кнопка была «плиткой» */
.services__list li {
  padding: 1rem; /* было padding: 1rem; */
  list-style: none;
}


/* Стили для кнопки-ссылки внутри li */
.btn-service {
  display: inline-flex;
  width: 100%;               /* растягиваем на всю ячейку */
  justify-content: center;   /* центрируем текст */
  align-items: center;
  padding: 1.25rem 1rem;      /* внутренняя «подушка» кнопки */
  background-color: #f5f5f5;  /* фон в цвет сайта */
  color: #111;                /* цвет текста */
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  text-decoration: none;
  border-radius: 4px;
  transition: background 2.5s, transform 0.2s;
}

/* Hover-эффект */
.btn-service:hover {
  background-color: rgba(224, 224, 224, 0.8); /* полупрозрачный фон */
  backdrop-filter: blur(10px);                 /* размытие заднего плана */
  transform: scale(1.05);                     /* лёгкое увеличение */
  transition: transform 0.3s ease, background-color 0.9s ease, backdrop-filter 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}

/* Чтобы снять подчеркивание в любых состояниях */
.btn-service:link,
.btn-service:visited,
.btn-service:active,
.btn-service:focus {
  text-decoration: none;
}

.price-section {
  background-color: #f5f5f5;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  max-height: 180px;  /* высота «свёрнутого» вида */
}

/* Сетка: чтобы карточки не подстраивались по высоте друг под друга */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  align-items: start; /* важно! */
}

/* Карточка — фиксированная «плитка» */

.price-card {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  max-height: auto;
  transition: max-height 0.4s ease, transform 0.3s ease;
  margin-bottom: 1.5rem; /* отступ от футера */
}

.price-card:hover {
  transform: translateY(-8px);
  max-height: auto;           /* подгоните под высоту всего контента */
}

.price-card:hover .price-card__details {
  max-height: none;
  opacity: 1;
}

/* Заголовок карточки с превью */
.price-card__header {
  text-align: center;
  padding: 1.5rem 1rem;
}

.price-card__header img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.price-card__header h3 {
  margin: 0;
  font-size: 1.25rem;
}

/* Детали и цены */
.price-card__details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.price-card__details p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.price-card__details ul {
  list-style: none;
  padding-left: 0;
}

.price-card__details li {
  margin-bottom: 0.5rem;
}

/* базовая типографика внутри деталей */
.price-card__details p { margin-bottom: 0.75rem; line-height: 1.6; }
.price-card__details ul { list-style: none; padding: 0; margin: 0; }
.price-card__details li { margin-bottom: 0.5rem; }

.price-bottom-text {
  max-width: 400px;         /* максимальная ширина блока */
  margin: 2rem auto 0;      /* авто по бокам — центрирование */
  text-align: justify;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ============================ */
/*          Контакты            */
/* ============================ */
.contact a {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: none;
}

.contact .container {
  text-align: center;
}

/* Социальные кнопки-карточки */
.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-buttons-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Социальные кнопки-карточки */
.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-buttons-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem  auto 0;
  padding: 0.75rem 1.5rem;
  border: 0.5px solid #111;
  background: transparent;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  -webkit-backdrop-filter 0.35s ease;
  width: 80%;
  max-width: 400px;
  position: relative;
  overflow: visible; 
}

/* WhatsApp */
.btn-whatsapp {
  position: relative;       /* создаём контекст для ::before */
  --glow: #25D366;           /* цвет свечения */
}

/* Свечение */
.btn-whatsapp::before {
  content: "";               /* обязательно для отображения */
  position: absolute;
  inset: -12px;              /* размер ореола вокруг кнопки */
  border-radius: 999px;
  background: var(--glow);
  filter: blur(18px);        /* мягкое размытие */
  opacity: 0;                /* скрыто по умолчанию */
  transition: opacity 0.35s ease;
  pointer-events: none;      /* не мешает клику */
  z-index: -1;               /* за кнопкой */
}

/* Hover-эффект */
.btn-whatsapp:hover {
  transform: scale(1.06);
  background: var(--glow);
  border-color: var(--glow);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.20),
    0 0 30px -4px var(--glow);
}

/* Включаем свечение при наведении */
.btn-whatsapp:hover::before {
  opacity: 1;
}

.btn-whatsapp { --glow: #25D366; }

/* Telegram */
.btn-telegram {
  position: relative;      /* создаём контекст для ::before */
  --glow: #0088cc;         /* цвет свечения */
}

/* Свечение */
.btn-telegram::before {
  content: "";             /* обязательно, иначе не отрисуется */
  position: absolute;
  inset: -12px;            /* ширина свечения вокруг кнопки */
  border-radius: 999px;
  background: var(--glow);
  filter: blur(18px);      /* мягкое размытие */
  opacity: 0;              /* появится при hover */
  transition: opacity 0.35s ease;
  pointer-events: none;    /* не блокирует клики */
  z-index: -1;             /* находится за кнопкой */
}

/* Hover-эффект */
.btn-telegram:hover {
  transform: scale(1.06);
  background: var(--glow);
  border-color: var(--glow);
  color: #fff;             /* текст читаемый на фоне */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.12),
    0 0 30px -4px var(--glow);
}

/* При наведении включаем свечение */
.btn-telegram:hover::before {
  opacity: 1;
}

/* VK */
.btn-vk {
  position: relative;           /* создаём контекст для ::before */
  --glow: #0077ff;              /* цвет свечения */
}

/* Свечение за пределами кнопки */
.btn-vk::before {
  content: "";
  position: absolute;
  inset: -12px;                 /* свечение шире кнопки */
  border-radius: 999px;
  background: var(--glow);      /* используем переменную */
  filter: blur(18px);           /* мягкое размытие */
  opacity: 0;                   /* появится на hover */
  transition: opacity 0.35s ease;
  pointer-events: none;         /* не блокирует клики */
  z-index: -1;                  /* за кнопкой */
}

/* Ховер-эффект */
.btn-vk:hover {
  transform: scale(1.06);
  background: var(--glow);
  border-color: var(--glow);
  color: #fff;                  /* чтобы текст был читабельным */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.12),
    0 0 30px -4px var(--glow);  /* лёгкий цветной ореол */
}

.btn-vk:hover::before {
  opacity: 1;
}

/*instagram*/
.btn-instagram {
  position: relative;
  --glow-gradient: radial-gradient(circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* Подсветка вокруг кнопки */
.btn-instagram::before {
  content: "";
  position: absolute;
  inset: -10px; /* ширина свечения за кнопкой */
  border-radius: 999px;
  background: var(--glow-gradient);
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1; /* за кнопкой */
}

/* Ховер */
.btn-instagram:hover {
  transform: scale(1.06);
  background: var(--glow-gradient);
  border:  none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-instagram:hover::before {
  opacity: 1;
}

/* Кнопка WhatsApp со стандартным стилем */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem  auto 0;
  padding: 0.75rem 1.5rem;
  border: 0.5px solid #111;
  background: transparent;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
  -webkit-backdrop-filter 0.35s ease;
  width: 80%;
  max-width: 400px;
}

/* Иконка внутри кнопок */
.btn-icon {
  width: 20px;
  height: 20px;
  display: block;
}

/* Сброс состояний ссылок */
.btn-whatsapp:link,
.btn-whatsapp:visited,
.btn-whatsapp:hover,
.btn-whatsapp:active,
.btn-whatsapp:focus,
.btn-social:link,
.btn-social:visited,
.btn-social:hover,
.btn-social:active,
.btn-social:focus {
  color: inherit;
  text-decoration: none;
}
/* ============================ */
/*            Footer            */
/* ============================ */
.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #333;
  color: #fff;
  padding: 0.75rem 0;
  text-align: center;
  flex: 0 0 auto;
}

.footer-informer {
    text-align: right;
}

/* ============================ */
/*      Media Queries (max-768) */
/* ============================ */
@media (max-width: 874px) {
  .nav-toggle {
    display: flex;
    z-index: 300;
  }

  .nav__list {
    position: fixed;
    top: 0;
    left: -120%;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    padding: 4rem 1.5rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 200;
    font-size: 1.25rem
  }

  .nav.nav--active .nav__list {
    left: 0;
  }

  .nav__list a {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav.nav--active .nav__list a {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ============================ */
/*   Портфолио(portfolio.html)  */
/* ============================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem; /* отступ от футера */
}

/* Заголовки разделов */
.portfolio-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}

/* Элемент портфолио */
.portfolio-item {
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  padding-top: 130%;
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}
.portfolio-item:hover {
  transform: translateY(-4px);
}
.portfolio-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  transition: transfxorm 0.4s ease;
  will-change: transform;
}
.portfolio-item:hover img {
  transform: translate(-50%, -50%) scale(1.07);
  filter: brightness(0.95);
}

.portfolio-item:hover .portfolio-caption {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1200;
  padding: 2rem 1rem;
  overflow-y: auto;
  gap: 1rem;
}

.overlay.active {
  display: flex;
  justify-content: flex-start;  /* по горизонтали */
  align-items: center;          /* по вертикали (на первый экран) */
  flex-direction: column;       /* содержимое столбиком */
}
.overlay img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* Блокируем прокрутку body, когда открыт overlay */
@supports selector(html:has(.overlay.active)) {
  html:has(.overlay.active) {
    overflow: hidden;
    height: 100%;
  }
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0;      /* убираем сверху */
  margin-bottom: 0;   /* убираем снизу */
  padding-top: 0;     /* если был padding */
  padding-bottom: 0;  /* убираем пустоту снизу */

  max-width: 700px; /* или сколько хочешь */
  width: 100%;
  margin: 0 auto;
}

.overlay .overlay-content img {
  display: block;        /* важно для margin */
  margin: 0 auto;        /* центр по горизонтали */
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}

/* Кнопки в модале — “прилипают” внутри */
.close-btn,
.scroll-top-btn {
  position: sticky;
  top: 12px;
  float: right;
  margin-left: 8px;

  background: rgba(255, 255, 255, 0.15); /* полупрозрачный фон */
  backdrop-filter: blur(8px);             /* вот это создаёт размытие под кнопкой */
  -webkit-backdrop-filter: blur(8px);     /* поддержка для Safari */

  color: var(--c-closebtn-text);
  border: 1px solid rgba(255, 255, 255, 0.2); /* граница для “стеклянного” эффекта */
  font-size: 2.0rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 16%;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08), 0 0.5px 1.5px rgba(0,0,0,0.05);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn { top: auto; bottom: 12px; }

.close-btn:hover {
  background: none;
  color: #000000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  transform: scale(1.07);
}

.scroll-top-btn:hover {
  background: none;
  color: #000000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  transform: scale(1.07);
}

.overlay-controls {
  position: relative;
  width: 100%;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .overlay {
    padding: 0.5rem;
  }

.portfolio-caption {
    font-size: 0.97rem;
    padding: 0.8em 0.8em 0.9em 0.8em;

  }
}

.portfolio-title {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  padding: 0.8em 1em 0.85em 1em;
  background: rgba(245,245,245,0.85);
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  line-height: 1.25;

  /* добавляем плавность */
  transition:
    background-color 0.35s ease,
    transform 0.35s ease,
    font-size 0.35s ease;
}

/* при наведении на карточку */
.portfolio-item:hover .portfolio-title {
  background: rgba(0, 0, 0, 0.55); /* мягкое затемнение подложки */
  color: #fff;                     /* белый текст на тёмном фоне */
  transform: scale(1.05);          /* лёгкое увеличение */
  font-size: 1.05rem;              /* немного крупнее */
  text-shadow: none;               /* убираем светлый ореол — аккуратнее */
}

