/* ═══════════════════════════════════════════════
   Хижа „Офелиите“ — Витоша, 1540 м
   ═══════════════════════════════════════════════ */

:root {
  /* Земни, планински тонове — взети от самата хижа */
  --ink: #0e1a14; /* дълбок смърчов мрак */
  --ink-2: #12211a;
  --ink-3: #1b2e24;
  --moss: #2c4636;
  --gold: #e8b23c; /* жълтото на фасадата */
  --gold-2: #f5ce72;
  --cream: #f6f1e6;
  --cream-2: #ede5d5;
  --paper: #fbf8f2;
  --crocus: #9b8ac4; /* минзухарено, използва се пестеливо */
  --txt: #20211d;
  --txt-soft: #5a5f56;
  --line: rgba(28, 45, 35, 0.14);

  --wrap: 1220px;
  --r: 18px;
  --r-lg: 26px;
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
  --nav-h: 74px;

  --f-display: "Fraunces", ui-serif, Georgia, serif;
  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(15.5px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--txt);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-family: var(--f-display);
  font-weight: 600;
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
}
@media (max-width: 640px) {
  .wrap {
    width: min(100% - 1.9rem, var(--wrap));
  }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip:focus {
  left: 0;
}

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ═══ TYPOGRAPHY HELPERS ═══ */
.h2 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
}
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.735rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.section--story .eyebrow,
.section--route .eyebrow {
  color: var(--moss);
}
.lead {
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  color: var(--txt-soft);
  max-width: 46ch;
}
.section--dark .lead,
.section--contact .lead {
  color: rgba(246, 241, 230, 0.7);
}
.muted {
  color: var(--txt-soft);
  font-size: 0.93rem;
}
.note {
  margin-top: 2.6rem;
  text-align: center;
  color: rgba(246, 241, 230, 0.62);
  font-size: 0.95rem;
}
.note a {
  color: var(--gold-2);
  text-underline-offset: 3px;
}

/* ═══ BUTTONS ═══ */
.btn {
  --bg: var(--gold);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.92rem 1.6rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
  will-change: transform;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.btn--gold {
  box-shadow: 0 8px 26px -10px rgba(232, 178, 60, 0.8);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(232, 178, 60, 0.95);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 230, 0.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(246, 241, 230, 0.12);
  border-color: rgba(246, 241, 230, 0.75);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(44, 70, 54, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.link:hover {
  border-color: var(--moss);
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding: 0.85rem 0;
  transition:
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    padding 0.45s var(--ease);
}
.nav__inner {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav.is-stuck {
  background: rgba(14, 26, 20, 0.9);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow:
    0 1px 0 rgba(246, 241, 230, 0.08),
    0 10px 34px -22px rgba(0, 0, 0, 0.9);
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
  flex: 0 0 auto;
}
.brand__mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: var(--gold);
}
.brand__mark .brand__inner {
  fill: var(--ink);
}
.nav.is-stuck .brand__mark .brand__inner {
  fill: var(--ink);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.brand__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.62;
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 1.55rem;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  text-decoration: none;
  color: rgba(246, 241, 230, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.35s var(--ease);
}
.nav__links a:hover {
  color: var(--cream);
}
.nav__links a:hover::after {
  right: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--gold);
  padding: 0.55rem 1.05rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.87rem;
  transition:
    background 0.25s,
    transform 0.25s var(--ease);
}
.nav__cta svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.nav__cta:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: rgba(246, 241, 230, 0.1);
  border: 1px solid rgba(246, 241, 230, 0.2);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  backdrop-filter: blur(8px);
  transition: background 0.25s;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--cream);
  border-radius: 2px;
  transition:
    transform 0.38s var(--ease),
    opacity 0.2s;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

@media (max-width: 980px) {
  .nav__links {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ═══ DRAWER ═══ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-3) 100%);
  padding: calc(var(--nav-h) + 2.2rem) 1.9rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 0.38s var(--ease),
    transform 0.38s var(--ease);
}
.drawer.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1rem;
}
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 7.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(246, 241, 230, 0.09);
  opacity: 0;
  transform: translateY(14px);
}
.drawer.is-open .drawer__nav a {
  animation: drawerIn 0.5s var(--ease) forwards;
}
.drawer.is-open .drawer__nav a:nth-child(1) {
  animation-delay: 0.06s;
}
.drawer.is-open .drawer__nav a:nth-child(2) {
  animation-delay: 0.11s;
}
.drawer.is-open .drawer__nav a:nth-child(3) {
  animation-delay: 0.16s;
}
.drawer.is-open .drawer__nav a:nth-child(4) {
  animation-delay: 0.21s;
}
.drawer.is-open .drawer__nav a:nth-child(5) {
  animation-delay: 0.26s;
}
.drawer.is-open .drawer__nav a:nth-child(6) {
  animation-delay: 0.31s;
}
@keyframes drawerIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.drawer__nav em {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.85;
}
.drawer__foot {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.drawer__social {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
}
.drawer__social a {
  color: rgba(246, 241, 230, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.drawer__social a:hover {
  color: var(--gold);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 0 clamp(3.4rem, 8vh, 6rem);
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.08);
  animation: heroDrift 22s var(--ease) forwards;
}
@keyframes heroDrift {
  to {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    animation: none;
    transform: none;
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(9, 17, 13, 0.58) 0%,
      rgba(9, 17, 13, 0.14) 20%,
      rgba(9, 17, 13, 0.1) 42%,
      rgba(9, 17, 13, 0.42) 62%,
      rgba(9, 17, 13, 0.82) 78%,
      rgba(9, 17, 13, 0.96) 92%,
      rgba(9, 17, 13, 1) 100%
    ),
    radial-gradient(
      95% 62% at 8% 92%,
      rgba(9, 17, 13, 0.78) 0%,
      rgba(9, 17, 13, 0.34) 46%,
      transparent 74%
    );
}

.hero__body {
  text-shadow: 0 2px 26px rgba(9, 17, 13, 0.75);
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
  color: var(--cream);
  position: relative;
}
@media (max-width: 640px) {
  .hero__body {
    width: min(100% - 1.9rem, var(--wrap));
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(246, 241, 230, 0.11);
  border: 1px solid rgba(246, 241, 230, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin: 0 0 1.4rem;
  animation: up 0.8s 0.1s var(--ease) both;
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 178, 60, 0.22);
}

.hero__title {
  font-size: clamp(3.2rem, 12.5vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.9;
  margin: 0 0 1.5rem;
  text-wrap: balance;
  animation: up 0.9s 0.2s var(--ease) both;
}
.hero__title span {
  color: var(--gold);
  display: inline-block;
}

.hero__lead {
  font-size: clamp(1.02rem, 1.75vw, 1.28rem);
  color: rgba(246, 241, 230, 0.86);
  max-width: 52ch;
  margin: 0 0 2.2rem;
  animation: up 0.9s 0.32s var(--ease) both;
}
@media (max-width: 760px) {
  .br-d {
    display: none;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: up 0.9s 0.44s var(--ease) both;
}
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 46px;
  display: grid;
  place-items: center;
  z-index: 3;
}
.hero__scrollline {
  display: block;
  width: 1.5px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(246, 241, 230, 0.75));
  position: relative;
  overflow: hidden;
}
.hero__scrollline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollPulse 2.1s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% {
    transform: translateY(-100%);
  }
  55%,
  100% {
    transform: translateY(100%);
  }
}
@media (max-width: 760px) {
  .hero__scroll {
    display: none;
  }
}

/* ═══ FACTS ═══ */
.facts {
  background: var(--ink-2);
  color: var(--cream);
  border-block: 1px solid rgba(246, 241, 230, 0.09);
}
.facts__list {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.facts__list li {
  padding: 1.8rem 0.8rem;
  text-align: center;
  border-left: 1px solid rgba(246, 241, 230, 0.09);
}
.facts__list li:first-child {
  border-left: 0;
}
.facts__list b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.facts__list span {
  font-size: 0.79rem;
  color: rgba(246, 241, 230, 0.6);
  letter-spacing: 0.02em;
}
@media (max-width: 860px) {
  .facts__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .facts__list li {
    border-left: 0;
    border-top: 1px solid rgba(246, 241, 230, 0.09);
    padding: 1.25rem 0.6rem;
  }
  .facts__list li:first-child,
  .facts__list li:nth-child(2) {
    border-top: 0;
  }
  .facts__list li:nth-child(odd) {
    border-right: 1px solid rgba(246, 241, 230, 0.09);
  }
  .facts__list li:last-child {
    grid-column: 1/-1;
    border-right: 0;
  }
}

/* ═══ SECTIONS ═══ */
.section {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  position: relative;
}
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark .h2 {
  color: var(--cream);
}
.section--story {
  background: var(--paper);
}
.section--route {
  background: var(--cream-2);
}
.section--contact {
  background: linear-gradient(170deg, var(--ink) 0%, var(--moss) 190%);
  color: var(--cream);
}

.secthead {
  max-width: 60ch;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
.secthead .h2 {
  margin-bottom: 1.1rem;
  text-wrap: balance;
}

/* ═══ STORY ═══ */
.story {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}
.story__text .h2 {
  margin-bottom: 1.4rem;
}
.quote {
  margin: 1.9rem 0;
  padding: 1.3rem 0 1.3rem 1.6rem;
  border-left: 2.5px solid var(--gold);
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.42;
  color: var(--ink-3);
}
.quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-soft);
}

.ticks {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.72rem;
}
.ticks li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.97rem;
  color: var(--txt-soft);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 178, 60, 0.18);
}

.story__media {
  display: grid;
  gap: 1.1rem;
}
.ph {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.ph:hover img {
  transform: scale(1.04);
}
.ph--tall {
  aspect-ratio: 4/3;
}
.ph--wide {
  aspect-ratio: 5/4;
}
.ph figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1.3rem 0.95rem;
  background: linear-gradient(transparent, rgba(14, 26, 20, 0.86));
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
  }
  .story__media {
    grid-template-columns: 1fr 1fr;
  }
  .ph--tall,
  .ph--wide {
    aspect-ratio: 3/4;
  }
}
@media (max-width: 560px) {
  .story__media {
    grid-template-columns: 1fr;
  }
  .ph--tall {
    aspect-ratio: 4/3;
  }
  .ph--wide {
    aspect-ratio: 4/3;
  }
}

/* ═══ МЕНЮ ═══ */
.menu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 1.1rem;
}
.menu__card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  grid-column: span 2;
  background: var(--ink-3);
  isolation: isolate;
  min-height: 300px;
}
.menu__card--hero {
  grid-column: span 4;
  min-height: 420px;
}
.menu__card--gourmet {
  grid-column: span 2;
  box-shadow: inset 0 0 0 1.5px rgba(232, 178, 60, 0.55);
}
.menu__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s var(--ease);
}
.menu__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    transparent 22%,
    rgba(14, 26, 20, 0.62) 54%,
    rgba(14, 26, 20, 0.96) 100%
  );
}
.menu__card:hover img {
  transform: scale(1.05);
}
.menu__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.4rem 1.35rem;
  color: var(--cream);
}
.menu__body h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.menu__body p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(246, 241, 230, 0.78);
  line-height: 1.5;
}
.tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.32rem 0.72rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .menu {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(260px, auto);
  }
  .menu__card {
    grid-column: span 2;
  }
  .menu__card--hero {
    grid-column: span 4;
    min-height: 340px;
  }
  .menu__card--gourmet {
    grid-column: span 4;
  }
}
@media (max-width: 560px) {
  .menu {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.9rem;
  }
  .menu__card,
  .menu__card--hero,
  .menu__card--gourmet {
    grid-column: span 1;
    min-height: 0;
    aspect-ratio: 4 / 3.4;
  }
}

/* ═══ ПРЕЖИВЯВАНИЯ ═══ */
.exp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.exp__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s;
}
.exp__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -30px rgba(14, 26, 20, 0.5);
  border-color: rgba(232, 178, 60, 0.5);
}
.exp__img {
  aspect-ratio: 4/3.1;
  overflow: hidden;
  background: var(--cream-2);
}
.exp__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.exp__card:hover .exp__img img {
  transform: scale(1.06);
}
.exp__body {
  padding: 1.4rem 1.35rem 1.6rem;
}
.exp__body h3 {
  font-size: 1.16rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.exp__body p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--txt-soft);
  line-height: 1.58;
}
@media (max-width: 1000px) {
  .exp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .exp {
    grid-template-columns: 1fr;
  }
}

/* ═══ ГАЛЕРИЯ ═══ */
.gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
  padding-inline: 0.6rem;
}
.gallery__item {
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: var(--ink-3);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.gallery__item:nth-child(1),
.gallery__item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    opacity 0.35s;
}
.gallery__item:hover img {
  transform: scale(1.07);
  opacity: 0.85;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery__item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 560px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }
  .gallery__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/11;
  }
}

/* ═══ МАРШРУТ ═══ */
.route__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.route__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem 2rem;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.route__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px -30px rgba(14, 26, 20, 0.45);
}
.route__icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  margin-bottom: 1.15rem;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.route__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.route__card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.route__card p {
  font-size: 0.95rem;
  color: var(--txt-soft);
  margin-bottom: 0.7rem;
}
.route__card b {
  color: var(--txt);
  font-weight: 700;
}
.times {
  margin-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.times li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.times span {
  color: var(--txt-soft);
}
.times b {
  font-family: var(--f-display);
  font-size: 1.06rem;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .route__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ КОНТАКТИ ═══ */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
}
.contact .h2 {
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.contact__rows {
  margin: 2rem 0 1.8rem;
  border-top: 1px solid rgba(246, 241, 230, 0.16);
}
.crow {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(246, 241, 230, 0.16);
  text-decoration: none;
  transition: padding-left 0.35s var(--ease);
}
a.crow:hover {
  padding-left: 0.6rem;
}
.crow__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.crow__value {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.crow--static .crow__value {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.4;
}
.contact__social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact__social a {
  color: rgba(246, 241, 230, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition:
    color 0.25s,
    border-color 0.25s;
}
.contact__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.contact__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3.4;
}
.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__photo {
    order: -1;
    aspect-ratio: 16/10;
  }
}

/* ═══ FOOTER ═══ */
.foot {
  background: var(--ink);
  color: rgba(246, 241, 230, 0.6);
  padding: 2.6rem 0 calc(2.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(246, 241, 230, 0.09);
}
.foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  text-align: center;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
}
.foot__brand .brand__mark {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}
.foot__brand .brand__inner {
  fill: var(--ink);
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}
.foot__nav a {
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.25s;
}
.foot__nav a:hover {
  color: var(--gold);
}
.foot__note {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ═══ LIGHTBOX ═══ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(9, 16, 12, 0.96);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lb.is-open {
  opacity: 1;
}
.lb__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -30px #000;
}
.lb__close,
.lb__nav {
  position: absolute;
  background: rgba(246, 241, 230, 0.1);
  border: 1px solid rgba(246, 241, 230, 0.22);
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    transform 0.25s;
}
.lb__close:hover,
.lb__nav:hover {
  background: rgba(246, 241, 230, 0.22);
  transform: scale(1.06);
}
.lb__close {
  top: clamp(0.8rem, 3vw, 1.6rem);
  right: clamp(0.8rem, 3vw, 1.6rem);
  font-size: 1.9rem;
}
.lb__nav--prev {
  left: clamp(0.6rem, 2.5vw, 1.6rem);
}
.lb__nav--next {
  right: clamp(0.6rem, 2.5vw, 1.6rem);
}
@media (max-width: 560px) {
  .lb__nav {
    width: 42px;
    height: 42px;
    bottom: 1.4rem;
    top: auto;
  }
  .lb__nav--prev {
    left: calc(50% - 52px);
  }
  .lb__nav--next {
    right: calc(50% - 52px);
  }
}

/* ═══ CALL FAB (mobile) ═══ */
.callfab {
  position: fixed;
  right: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: none;
  place-items: center;
  box-shadow: 0 12px 30px -10px rgba(232, 178, 60, 0.85);
  opacity: 0;
  transform: translateY(70px) scale(0.85);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.callfab svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.callfab.is-on {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .callfab {
    display: grid;
  }
}

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── малки поправки за мобилен ── */
.only-d {
  display: inline;
}
@media (max-width: 640px) {
  .only-d {
    display: none;
  }
  .hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    padding: 0.45rem 0.85rem;
  }
  .hero {
    padding-bottom: clamp(2.6rem, 6vh, 4rem);
  }
  .hero__media img {
    object-position: 50% 50%;
  }
}

.only-m {
  display: none;
}
@media (max-width: 640px) {
  .only-m {
    display: inline;
  }
}

/* [hidden] трябва да бие .lb/.drawer, иначе невидим оверлей яде кликовете */
[hidden] {
  display: none !important;
}
