/* ==========================================================================
   Къща за гости „Стеврек – Край реката“
   Основен стилов файл
   ========================================================================== */

:root {
  --forest: #1f3a2e;
  --forest-dark: #142419;
  --moss: #4a6b4f;
  --sand: #c9a86a;
  --sand-dark: #a8874a;
  --cream: #faf7f1;
  --paper: #ffffff;
  --ink: #23282a;
  --ink-soft: #5b6467;
  --line: #e3ddd1;

  --shadow-sm: 0 2px 8px rgba(20, 36, 25, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 36, 25, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 36, 25, 0.22);

  --radius: 14px;
  --radius-lg: 22px;

  --wrap: 1240px;
  --header-h: 78px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lato", "Segoe UI", Tahoma, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--forest-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

p {
  margin: 0 0 1.1em;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--paper {
  background: var(--paper);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.center {
  text-align: center;
}

/* --- Заглавие на секция ------------------------------------------------ */

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-dark);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.section-head p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.rule {
  width: 64px;
  height: 3px;
  background: var(--sand);
  border: 0;
  margin: 1.2rem auto 0;
}

/* --- Бутони ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--sand);
  color: var(--forest-dark);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--sand-dark);
  color: #fff;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--forest-dark);
}

.btn--outline {
  border-color: var(--forest);
  color: var(--forest);
}

.btn--outline:hover {
  background: var(--forest);
  color: #fff;
}

/* --- Хедър -------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header__inner {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header.is-solid,
.site-header.is-static {
  background: rgba(20, 36, 25, 0.96);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  flex: none;
}

/* Логото носи името и слогана, затова му даваме достатъчно височина
   „КРАЙ РЕКАТА“ да остане четимо. */
.logo img {
  height: 58px;
  width: auto;
  transition: opacity 0.2s ease;
}

.logo:hover img {
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  padding: 0.5rem 0.72rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__cta {
  margin-left: 0.35rem;
  background: var(--sand);
  color: var(--forest-dark) !important;
  font-weight: 700;
  padding: 0.55rem 1.15rem !important;
}

.nav__cta:hover {
  background: #fff !important;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav a.is-active {
  color: var(--sand);
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.4rem;
  padding: 0.4rem 0.75rem !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav__lang img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 2rem;
    background: rgba(20, 36, 25, 0.985);
    transform: translateY(-120%);
    transition: transform 0.32s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    padding: 0.9rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
  }

  .nav__cta {
    margin: 1rem 0 0;
    text-align: center;
    border-radius: 999px !important;
    border-bottom: 0;
  }

  .nav__lang {
    margin: 0.6rem 0 0;
    justify-content: center;
    border-radius: 999px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .logo img {
    height: 46px;
  }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background: var(--forest-dark) center / cover no-repeat;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 22, 15, 0.68) 0%,
    rgba(11, 22, 15, 0.42) 45%,
    rgba(11, 22, 15, 0.78) 100%
  );
}

.hero > .wrap {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.5em;
}

.hero__sub {
  max-width: 640px;
  margin: 0 auto 2.2rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero--page {
  min-height: min(58vh, 520px);
}

/* --- Удобства (иконките от началната страница) -------------------------- */

.perks {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.perk {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 1.6rem 1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.perk:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.perk img {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.9rem;
  filter: brightness(0) invert(1);
}

.perk h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* --- Двуколонен блок ---------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse .split__media {
  order: -1;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
}

/* --- Кратка галерия на началната страница ------------------------------- */

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.preview-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-grid a:hover img {
  transform: scale(1.07);
}

/* --- Галерия ------------------------------------------------------------ */

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.gallery-tabs button {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-tabs button:hover {
  border-color: var(--sand);
  color: var(--forest);
}

.gallery-tabs button.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
}

.photo-grid button {
  position: relative;
  padding: 0;
  border: 0;
  background: #ddd8cc;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.photo-grid button:hover img {
  transform: scale(1.08);
  filter: brightness(1.06);
}

.photo-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}

.photo-grid button:hover::after {
  border-color: var(--sand);
}

/* --- Lightbox ----------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 13, 0.94);
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.lightbox__count {
  position: absolute;
  top: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox button:hover {
  background: var(--sand);
  color: var(--forest-dark);
}

.lightbox__close {
  top: 1.1rem;
  right: 1.1rem;
}
.lightbox__prev {
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .lightbox__prev {
    left: 0.4rem;
  }
  .lightbox__next {
    right: 0.4rem;
  }
}

/* --- Забележителности: грид --------------------------------------------- */

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.spot-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.spot-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.spot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spot-card:hover .spot-card__media img {
  transform: scale(1.06);
}

.spot-card__tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.spot-card__body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spot-card__body h3 {
  margin-bottom: 0.35rem;
}

.spot-card__meta {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand-dark);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.spot-card__body p {
  color: var(--ink-soft);
  flex: 1;
}

.spot-card__body .btn {
  align-self: flex-start;
  margin-top: 0.6rem;
}

/* --- Страница на една забележителност ----------------------------------- */

.article {
  max-width: 780px;
  margin-inline: auto;
}

.article__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.2rem;
}

.article__facts {
  list-style: none;
  padding: 1.4rem 1.6rem;
  margin: 0 0 2rem;
  background: var(--paper);
  border-left: 4px solid var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}

.article__facts li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.article__facts strong {
  display: inline-block;
  min-width: 130px;
  color: var(--forest-dark);
}

.article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--sand-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* --- Видео блок --------------------------------------------------------- */

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Контакти ----------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--sand);
  display: grid;
  place-items: center;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--ink-soft);
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--sand-dark);
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--sand);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- CTA лента ---------------------------------------------------------- */

.cta {
  position: relative;
  color: #fff;
  text-align: center;
  background: var(--forest-dark) center / cover no-repeat fixed;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 15, 0.72);
}

.cta > .wrap {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: #fff;
}

.cta__lines {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta__lines a {
  color: var(--sand);
  text-decoration: none;
}

.cta__lines a:hover {
  text-decoration: underline;
}

/* --- Футър -------------------------------------------------------------- */

.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 1.8rem;
  font-size: 0.93rem;
}

/* Четири колони: лого и адрес, меню, забележителности, контакти. */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

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

.site-footer li {
  padding: 0.22rem 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sand);
}

/* --- Появяване при скрол ------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* --- Бутон „нагоре“ ----------------------------------------------------- */

.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.2s ease;
  box-shadow: var(--shadow-md);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--sand);
  color: var(--forest-dark);
}

/* --- Често задавани въпроси -------------------------------------------- */

.faq-wrap {
  max-width: 900px;
  margin-inline: auto;
}

.faq-group + .faq-group {
  margin-top: 2.8rem;
}

.faq-group__title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--sand);
  margin-bottom: 1.2rem;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] {
  border-color: var(--sand);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  position: relative;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sand-dark);
  font-size: 1.15rem;
  font-family: var(--sans);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  background: var(--sand);
  color: var(--forest-dark);
}

.faq-item summary:hover {
  color: var(--sand-dark);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: -2px;
}

.faq-item__answer {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
}

.faq-item__answer > *:last-child {
  margin-bottom: 0;
}

.faq-cta {
  max-width: 700px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: 2.4rem 1.8rem;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
}

.faq-cta h3 {
  margin-bottom: 0.4rem;
}

.faq-cta p {
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

/* --- Резервация --------------------------------------------------------- */

.booking-box {
  max-width: 1000px;
  margin-inline: auto;
}

.booking-embed {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 520px;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
}

.booking-placeholder {
  background: var(--paper);
  border: 1px dashed var(--line);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.booking-placeholder strong {
  color: var(--forest-dark);
}

.booking-placeholder > *:last-child {
  margin-bottom: 0;
}

/* --- Удобства (списък в страница на стая) ------------------------------- */

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.2rem;
}

.amenity-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}

.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
}

/* --- Съобщения от форми -------------------------------------------------- */

.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
  font-size: 0.96rem;
  border-left: 4px solid;
}

.alert--ok {
  background: #edf6ee;
  border-color: #3f8f52;
  color: #235c32;
}

.alert--error {
  background: #fdeeee;
  border-color: #c0453f;
  color: #8b2b26;
}

.alert--warn {
  background: #fdf6e6;
  border-color: var(--sand);
  color: #7a5c1d;
}

/* Скрито поле-капан срещу спам ботове. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Видео с надпис ------------------------------------------------------ */

.video-item__caption {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}

/* Лого във футъра */
.site-footer__logo {
  height: 62px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* ==========================================================================
   Страница на забележителност
   ========================================================================== */

.spot-hero {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: calc(var(--header-h) + 3rem) 0 3rem;
}

.spot-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}

@media (max-width: 860px) {
  .spot-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

.spot-hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.spot-hero__tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--forest-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spot-hero__meta {
  margin: 0 0 1.1rem;
  color: var(--sand);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.spot-hero__lead {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* Снимката стои в собствена рамка и не се разпъва отвъд истинския си размер. */
.spot-hero__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spot-hero__media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.breadcrumbs--light {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.2rem;
}

.breadcrumbs--light a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs--light span {
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* --- Разположение: текст + странична колона ----------------------------- */

.spot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 980px) {
  .spot-layout {
    grid-template-columns: 1fr;
  }
}

.spot-body {
  max-width: 70ch;
}

.spot-body > p:first-child {
  font-size: 1.1rem;
  color: var(--forest-dark);
}

.spot-body p {
  color: var(--ink-soft);
}

.spot-body__source {
  margin-top: 2.2rem;
}

/* --- Странична колона ---------------------------------------------------- */

.spot-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: grid;
  gap: 1.2rem;
}

@media (max-width: 980px) {
  .spot-aside {
    position: static;
  }
}

.spot-facts {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
}

.spot-facts h2 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--sand);
}

.spot-facts dl {
  margin: 0;
}

.spot-facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dark);
  font-weight: 700;
}

.spot-facts dd {
  margin: 0.1rem 0 0.9rem;
  color: var(--ink);
  line-height: 1.5;
  font-size: 0.95rem;
}

.spot-facts dd:last-child {
  margin-bottom: 0;
}

/* --- Кутия с покана за резервация ---------------------------------------- */

.book-box {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.book-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(to right, var(--sand), var(--sand-dark));
}

.book-box__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.book-box h2 {
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.book-box p {
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.book-box__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}

.book-box__perks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.89rem;
  color: rgba(255, 255, 255, 0.75);
}

.book-box__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.book-box__btn {
  width: 100%;
  justify-content: center;
}

.book-box__phone {
  display: block;
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.book-box__phone strong {
  color: #fff;
  white-space: nowrap;
}

.book-box__phone:hover strong {
  color: var(--sand);
}

/* Широкият вариант: под статията, на цялата ширина. */
.book-box--wide {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.book-box--wide h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.book-box--wide p {
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

/* На широко предимствата вървят в две колони, за да не се проточват. */
.book-box--wide .book-box__perks {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.5rem 1.5rem;
  margin-bottom: 0;
}

.book-box--wide .book-box__action {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: clamp(1.6rem, 3vw, 2.6rem);
}

.book-box--wide .book-box__phone {
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .book-box--wide {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .book-box--wide .book-box__action {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 0;
    padding-top: 1.5rem;
  }
}/* --- Лента с кредити най-долу ------------------------------------------- */

.credits {
  background: var(--forest-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
}

.credits .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem 0.8rem;
  text-align: center;
  /* Същият дребен размер като бившия ред с копирайта. */
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.credits a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.credits a:hover {
  color: var(--sand);
}

.credits__sep {
  opacity: 0.3;
}

@media (max-width: 600px) {
  .credits__sep {
    display: none;
  }
  .credits .wrap {
    flex-direction: column;
    gap: 0.35rem;
  }
}
