@charset "UTF-8";
@font-face {
  font-family: "TBC Contractica";
  src: url("../fonts/TBCContractica.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-bg: #ffffff;
  --color-bg-muted: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #334155;
  --color-text-muted: #64748b;
  --color-ink: #0f172a;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-border-strong: rgba(15, 23, 42, 0.14);
  --color-accent: #475569;
  --color-accent-hover: #334155;
  --color-accent-soft: rgba(71, 85, 105, 0.09);
  --color-accent-muted: #64748b;
  --color-hero-bg: #0f172a;
  --color-hero-text: rgba(248, 250, 252, 0.97);
  --color-hero-dim: rgba(148, 163, 184, 0.92);
  --color-hero-eyebrow: #bae6fd;
  --color-hero-eyebrow-border: rgba(125, 211, 252, 0.5);
  --color-hero-glow: rgba(56, 189, 248, 0.28);
  --header-bg: rgb(255, 255, 255);
  --header-border: rgba(15, 23, 42, 0.08);
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(15, 23, 42, 0.07), 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.06);
  --footer-bg: #0f172a;
  --footer-text: rgba(248, 250, 252, 0.55);
  --footer-accent: #94a3b8;
  --modal-backdrop: rgba(15, 23, 42, 0.5);
  --nav-mobile-bg: var(--color-surface);
  --admin-ghost-bg: rgba(71, 85, 105, 0.1);
  --admin-ghost-color: var(--color-accent);
  --admin-ghost-hover: rgba(71, 85, 105, 0.15);
  --page-grid: rgba(148, 163, 184, 0.12);
  --focus-ring: rgba(59, 130, 246, 0.45);
  color-scheme: light;
}

[data-theme=dark] {
  --color-bg: #0b1220;
  --color-bg-muted: #131c2e;
  --color-surface: #1b2740;
  --color-text: #d8e1ef;
  --color-text-muted: #a5b2c5;
  --color-ink: #f8fafc;
  --color-border: rgba(248, 250, 252, 0.1);
  --color-border-strong: rgba(248, 250, 252, 0.16);
  --color-accent: #8fb5ff;
  --color-accent-hover: #b6ceff;
  --color-accent-soft: rgba(143, 181, 255, 0.18);
  --color-accent-muted: #9fbfff;
  --color-hero-bg: #0b1220;
  --color-hero-text: rgba(248, 250, 252, 0.97);
  --color-hero-dim: rgba(184, 198, 220, 0.9);
  --color-hero-eyebrow: #9fd6ff;
  --color-hero-eyebrow-border: rgba(120, 178, 255, 0.5);
  --color-hero-glow: rgba(120, 178, 255, 0.22);
  --header-bg: rgba(19, 28, 46, 0.9);
  --header-border: rgba(248, 250, 252, 0.1);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-card-hover: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --footer-bg: #0a111f;
  --footer-text: rgba(248, 250, 252, 0.58);
  --footer-accent: var(--color-accent);
  --modal-backdrop: rgba(0, 0, 0, 0.65);
  --nav-mobile-bg: var(--color-surface);
  --admin-ghost-bg: rgba(159, 191, 255, 0.14);
  --admin-ghost-color: var(--color-accent);
  --admin-ghost-hover: rgba(159, 191, 255, 0.22);
  --page-grid: rgba(165, 178, 197, 0.08);
  --focus-ring: rgba(143, 181, 255, 0.55);
  color-scheme: dark;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}
@media (min-width: 901px) {
  body {
    background: linear-gradient(to bottom, var(--color-hero-bg) 0, var(--color-hero-bg) 78px, var(--color-bg) 78px);
  }
}

.section__title,
.modal__title,
.admin-panel__title {
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: var(--color-ink);
}

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: min(100% - 28px, 1236px);
  margin: 14px auto 0;
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid var(--header-border);
  border-radius: 999px;
  box-shadow: 0px 0px 10px 0px rgba(11, 18, 32, 0.431372549);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
@media (max-width: 900px) {
  .site-header {
    position: sticky;
    width: 95%;
    margin: 0 auto;
    border-radius: 50px;
    border-left: none;
    border-right: none;
    box-shadow: 0 1px 0 var(--header-border);
    overflow: visible;
  }
}
@media (max-width: 900px) {
  .site-header:has(.site-nav.is-open) {
    border-bottom-color: transparent;
    border-radius: 28px 28px 0 0;
  }
}

.site-header__inner {
  width: 100%;
  padding-inline: clamp(0.75rem, 2vw, 1.25rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 640px) {
  .site-header__inner {
    height: 58px;
    gap: 0.55rem;
    padding-inline: 0.7rem;
  }
}

.site-main {
  margin-top: calc(-64px - 16px);
}
@media (max-width: 640px) {
  .site-main {
    margin-top: -64px;
  }
}

.site-logo__img {
  height: 56px;
  width: auto;
}
@media (max-width: 640px) {
  .site-logo__img {
    height: 46px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 1rem 1rem;
    background: var(--nav-mobile-bg);
    border: 1px solid var(--header-border);
    border-top: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0 0 20px 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    z-index: 101;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.site-nav__link {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav__link:hover {
  color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .site-nav__link {
    padding: 0.75rem 1rem;
    transform: none;
  }
  .site-nav__link:hover {
    background: var(--color-accent-soft);
    transform: none;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--color-border-strong) 60%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  cursor: pointer;
  color: var(--color-accent-muted);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@supports not (color: color-mix(in srgb, white 50%, black)) {
  .theme-toggle {
    border-color: var(--color-border);
    background: var(--color-surface);
  }
}
.theme-toggle:hover {
  border-color: var(--color-border-strong);
  color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.theme-toggle__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  flex-shrink: 0;
}
.theme-toggle__icon svg {
  width: 17px;
  height: 17px;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-toggle__icon--sun svg {
  opacity: 0.95;
  transform: scale(1);
}

.theme-toggle__icon--moon svg {
  opacity: 0;
  transform: scale(0.65) rotate(-22deg);
}

[data-theme=dark] .theme-toggle__icon--sun svg {
  opacity: 0;
  transform: scale(0.65) rotate(22deg);
}

[data-theme=dark] .theme-toggle__icon--moon svg {
  opacity: 1;
  transform: scale(1) rotate(0);
}

[data-theme=dark] .theme-toggle {
  color: #f8fafc;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
}

.site-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .site-nav__burger {
    display: flex;
  }
}
.site-nav__burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.site-nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.65rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.16);
}

[data-theme=dark] .btn--primary {
  background: #e2e8f0;
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
[data-theme=dark] .btn--primary:hover {
  background: #f1f5f9;
  color: #020617;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-accent-muted);
}
.btn--outline:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.hero .btn--primary {
  background: #38bdf8;
  color: #0f172a;
  box-shadow: 0 4px 28px rgba(56, 189, 248, 0.35);
}
.hero .btn--primary:hover {
  background: #7dd3fc;
  color: #0f172a;
  box-shadow: 0 8px 36px rgba(56, 189, 248, 0.4);
}

.btn--ghost {
  background: var(--admin-ghost-bg);
  color: var(--admin-ghost-color);
  border-color: transparent;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
}
.btn--ghost:hover {
  background: var(--admin-ghost-hover);
  color: var(--color-accent-hover);
}
.btn--ghost.is-active {
  background: var(--color-accent);
  color: #fff;
}

.btn--danger {
  background: transparent;
  border: 1px solid rgba(220, 80, 80, 0.45);
  color: #b91c1c;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  border-radius: 12px;
}
.btn--danger:hover {
  background: rgba(254, 226, 226, 0.6);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 100vh);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 10vw, 6rem) 0 clamp(3.5rem, 8vw, 5rem);
  margin-top: -78px;
  padding-top: calc(clamp(4rem, 10vw, 6rem) + 78px);
  overflow: hidden;
  color: var(--color-hero-text);
  background: var(--color-hero-bg);
}
@media (max-width: 900px) {
  .hero {
    margin-top: 0;
    padding-top: clamp(3rem, 8vw, 4.5rem);
    min-height: min(85svh, 720px);
  }
}

.container.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-hero-bg);
  overflow: hidden;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.52) 42%, rgba(15, 23, 42, 0.32) 66%, rgba(15, 23, 42, 0.76) 100%);
  pointer-events: none;
}

[data-theme=dark] .hero__bg::after {
  background: linear-gradient(115deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.62) 40%, rgba(2, 6, 23, 0.4) 65%, rgba(2, 6, 23, 0.85) 100%);
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.04);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease, transform 9.6s ease;
  will-change: opacity, transform;
}

.hero__bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-slide {
    transition: none;
    transform: none;
  }
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__copy {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero__copy {
    max-width: none;
    text-align: center;
    margin-inline: auto;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-hero-eyebrow);
  margin: 0 0 1.15rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-hero-eyebrow-border);
  background: rgba(255, 255, 255, 0.05);
}

.hero__title {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.08;
  margin: 0 0 1.2rem;
  color: #fff;
  text-wrap: balance;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(1.9rem, 8.6vw, 2.35rem);
    line-height: 1.14;
    margin-bottom: 1rem;
  }
}

.hero__text {
  margin: 0 0 2rem;
  color: var(--color-hero-dim);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 36ch;
}
@media (max-width: 900px) {
  .hero__text {
    max-width: 44ch;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .hero__text {
    font-size: 0.98rem;
    line-height: 1.62;
    margin-bottom: 1.6rem;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 900px) {
  .hero__cta {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .hero__cta {
    width: 100%;
    gap: 0.7rem;
  }
  .hero__cta .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 1rem;
  }
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
}
@media (max-width: 640px) {
  .section {
    padding: clamp(2.6rem, 8vw, 3.3rem) 0;
  }
}

.section--tours {
  background: var(--color-bg);
  overflow: visible;
  position: relative;
}

.section--gallery {
  background: var(--color-bg-muted);
}

.section--about {
  background: var(--color-bg-muted);
}

.section--contact {
  background: var(--color-bg-muted);
  position: relative;
  overflow: hidden;
}
.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, rgba(56, 189, 248, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.section__head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.section__head--contact {
  max-width: 560px;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .section__head {
    margin-bottom: 2rem;
  }
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}
.section__label--left {
  margin-left: 0;
}

@media (min-width: 801px) {
  .about .section__label--left {
    margin-left: 0;
  }
}

.section__title {
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  margin: 0 0 0.65rem;
  font-weight: 700;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .section__subtitle {
    font-size: 0.96rem;
  }
}

.about .section__title {
  text-align: left;
}

@media (min-width: 801px) {
  .about .section__label {
    margin-left: 0;
  }
}

.cms-login {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.cms-login[hidden] {
  display: none;
}

.cms-login__backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
  backdrop-filter: blur(10px);
}

.cms-login__card {
  position: relative;
  width: min(100%, 400px);
  padding: 1.85rem 1.75rem;
  background: var(--color-surface);
  border-radius: 26px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: 1px solid var(--color-border);
}

.cms-login__title {
  margin: 0 0 0.5rem;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.cms-login__lead {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cms-login__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cms-login__error {
  margin: 0;
  font-size: 0.85rem;
  color: #b42318;
  font-weight: 500;
}
.cms-login__error[hidden] {
  display: none;
}

.admin-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  padding: 1.65rem 1.85rem;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-soft);
  overflow: visible;
  position: relative;
  z-index: 1;
}
.admin-panel[hidden] {
  display: none;
}

.admin-panel__title {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  color: var(--color-ink);
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .admin-form__grid {
    grid-template-columns: 1fr;
  }
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.admin-field span {
  color: var(--color-text-muted);
}
.admin-field input,
.admin-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
}
.admin-field input:focus,
.admin-field textarea:focus {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  background: var(--color-surface);
}

.admin-field--full {
  grid-column: 1/-1;
}

.admin-form__actions {
  margin-top: 1.15rem;
}

.admin-hint {
  margin: 1.1rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.admin-form__actions--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.admin-quill-editor {
  position: relative;
  overflow: visible;
}
.admin-quill-editor:has(.ql-picker.ql-expanded) {
  z-index: 20;
}
.admin-quill-editor .ql-toolbar.ql-snow {
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  border-color: var(--color-border);
  border-radius: 12px 12px 0 0;
  background: var(--color-bg);
  position: relative;
  z-index: 5;
}
.admin-quill-editor .ql-container.ql-snow {
  font-family: inherit;
  font-size: 1rem;
  border-color: var(--color-border);
  border-radius: 0 0 12px 12px;
  background: var(--color-surface);
  position: relative;
  z-index: 1;
}
.admin-quill-editor .ql-editor {
  min-height: 5.5rem;
  line-height: 1.55;
  color: var(--color-text);
}
.admin-quill-editor .ql-editor.ql-blank::before {
  color: rgba(94, 102, 115, 0.65);
  font-style: normal;
}
.admin-quill-editor .ql-editor h1,
.admin-quill-editor .ql-editor h2,
.admin-quill-editor .ql-editor h3,
.admin-quill-editor .ql-editor h4,
.admin-quill-editor .ql-editor h5,
.admin-quill-editor .ql-editor h6 {
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  color: inherit;
}
.admin-quill-editor .ql-editor .ql-size-small {
  font-size: 0.75em;
}
.admin-quill-editor .ql-editor .ql-size-large {
  font-size: 1.5em;
}
.admin-quill-editor .ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.admin-quill-editor--tall .ql-editor {
  min-height: 12rem;
}
.admin-quill-editor .ql-snow .ql-picker-options {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.admin-quill-editor .ql-snow .ql-picker.ql-expanded .ql-picker-options {
  z-index: 200 !important;
}
.admin-quill-editor .ql-snow .ql-tooltip {
  z-index: 210;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.admin-quill-editor .ql-snow .ql-tooltip input[type=text] {
  font-size: 0.88rem;
}
.admin-quill-editor .ql-snow .ql-color-picker .ql-picker-item,
.admin-quill-editor .ql-snow .ql-background .ql-picker-item {
  border: 1px solid rgba(12, 15, 20, 0.12);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
  gap: 1.75rem;
}
@media (max-width: 640px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.tour-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-surface) 95%, var(--color-accent-muted) 5%) 0%, var(--color-surface) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-strong);
}
.tour-card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.tour-card--discount {
  box-shadow: 0 0px 10px rgba(214, 52, 74, 0.31), var(--shadow-card);
  border-color: color-mix(in srgb, #d6344a 28%, var(--color-border));
}

.tour-card--discount:hover {
  box-shadow: 0 0px 10px rgba(214, 52, 74, 0.31), var(--shadow-card);
  border-color: color-mix(in srgb, #d6344a 42%, var(--color-border-strong));
}

[data-theme=dark] .tour-card--discount {
  box-shadow: 0 0px 10px rgba(214, 52, 74, 0.51), var(--shadow-card);
  border-color: color-mix(in srgb, #ff6b7d 36%, var(--color-border));
}

[data-theme=dark] .tour-card--discount:hover {
  box-shadow: 0 0px 10px rgba(214, 52, 74, 0.51), var(--shadow-card);
  border-color: color-mix(in srgb, #ff8ea0 44%, var(--color-border-strong));
}

.tour-add-card {
  min-height: 100%;
  border: 1px dashed var(--color-border-strong);
  border-radius: 20px;
  background: color-mix(in srgb, var(--color-surface) 88%, var(--color-accent-muted) 12%);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 1.2rem;
  color: var(--color-ink);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.tour-add-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
}
.tour-add-card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.tour-add-card__plus {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  color: var(--color-accent);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.tour-add-card__label {
  font-size: 0.95rem;
  font-weight: 600;
}

.tour-card__image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-muted);
  border-radius: 20px 20px 0 0;
}

.tour-card__image-discount {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 18px rgba(166, 20, 42, 0.35);
}

.tour-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.tour-card:hover .tour-card__image-wrap::after {
  opacity: 1;
}

.tour-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-card:hover .tour-card__image {
  transform: scale(1.03);
}

.tour-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  padding: 1.15rem 1.2rem 1.1rem;
}
@media (max-width: 640px) {
  .tour-card__body {
    padding: 1rem 1rem 1.05rem;
  }
}

.tour-card__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.tour-card__tags {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tour-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.38rem 0.58rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tour-card__tag--price {
  background: color-mix(in srgb, var(--color-accent-muted) 14%, transparent);
  color: var(--color-accent-muted);
  border: 1px solid color-mix(in srgb, var(--color-accent-muted) 35%, transparent);
}

.tour-card__tag--discount {
  background: linear-gradient(135deg, #ff5a72 0%, #d6344a 100%);
  color: #fff;
  border: 1px solid color-mix(in srgb, #9f1239 40%, #ffffff 14%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.tour-card__image-discount.tour-card__tag--discount {
  padding: 0.44rem 0.68rem;
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(159, 18, 57, 0.4);
}

[data-theme=dark] .tour-card__tag--discount {
  background: linear-gradient(135deg, #ff6f86 0%, #e6465e 100%);
  color: #fff5f7;
  border-color: color-mix(in srgb, #ff95a6 28%, #7f1d1d);
}

.tour-card__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--color-ink);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.tour-card__date {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.tour-card__desc {
  margin: 0;
  font-size: 0.76rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
  word-break: break-word;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card__desc p {
  margin: 0 0 0.35rem;
}
.tour-card__desc p:last-child {
  margin-bottom: 0;
}
.tour-card__desc a {
  color: var(--color-accent-muted);
  font-weight: 600;
}
.tour-card__desc strong {
  color: var(--color-ink);
}

.tour-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.tour-card__pricing {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.38rem;
  flex-wrap: wrap;
}

.tour-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--color-accent);
}

.tour-card__old-price {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.3px;
  text-decoration-color: color-mix(in srgb, #d6344a 55%, transparent);
}

.tour-card__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.36rem 0.55rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(135deg, #ffe5eb 0%, #ffd4dd 100%);
  color: #991b2f;
  border: 1px solid color-mix(in srgb, #d6344a 45%, #ffffff 18%);
  box-shadow: 0 4px 10px rgba(214, 52, 74, 0.18);
}

[data-theme=dark] .tour-card__discount {
  background: color-mix(in srgb, #d6344a 28%, #201017);
  color: #ffd2da;
  border-color: color-mix(in srgb, #ff8295 50%, transparent);
}

.tour-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent-muted);
}

.tour-card__cta::after {
  content: "→";
  font-size: 0.92rem;
  transform: translateY(-0.5px);
}

.tour-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 0 1.35rem 1.15rem;
}
@media (max-width: 640px) {
  .tour-card__actions {
    padding: 0 1.05rem 1rem;
  }
}

.tour-card__btn-edit {
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
}

.gallery-swiper {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-surface);
}

.gallery-item {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-swiper__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 86%, transparent);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-swiper__nav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: var(--color-border-strong);
  background: var(--color-surface);
}
.gallery-swiper__nav::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid var(--color-ink);
  border-right: 2px solid var(--color-ink);
}
.gallery-swiper__nav--prev {
  left: 0.8rem;
}
.gallery-swiper__nav--prev::before {
  transform: rotate(-135deg);
}
.gallery-swiper__nav--next {
  right: 0.8rem;
}
.gallery-swiper__nav--next::before {
  transform: rotate(45deg);
}
@media (max-width: 640px) {
  .gallery-swiper__nav {
    width: 36px;
    height: 36px;
  }
}

.gallery-swiper__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem !important;
  z-index: 2;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.85;
  background: rgba(248, 250, 252, 0.6);
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (max-width: 800px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__visual {
  min-height: 320px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.15) 100%), url("../images/about-us.jpg") center/cover;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  position: relative;
}
@media (max-width: 640px) {
  .about__visual {
    min-height: 250px;
  }
}
.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(15, 23, 42, 0.2);
  pointer-events: none;
}

.about__text {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.about__list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-text);
}
.about__list li {
  margin-bottom: 0.65rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}
.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.contact-bento {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.25rem);
}

.contact-bento__call {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--color-hero-text);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(56, 189, 248, 0.12) inset;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-bento__call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(125, 211, 252, 0.2) inset;
  border-color: rgba(125, 211, 252, 0.35);
  color: #fff;
}
.contact-bento__call:hover .contact-bento__call-glow {
  opacity: 1;
}
.contact-bento__call:focus-visible {
  outline: 2px solid var(--color-hero-eyebrow);
  outline-offset: 3px;
}
.contact-bento__call:active {
  transform: translateY(0);
}

.contact-bento__call-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.35) 0%, transparent 52%);
  opacity: 0.65;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.contact-bento__call-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1.35rem, 4vw, 1.85rem) clamp(1.35rem, 4vw, 1.75rem);
  background: var(--color-surface);
}
@supports not (color: color-mix(in srgb, white 50%, black)) {
  .contact-bento__call-inner {
    background: var(--color-hero-bg);
  }
}
@media (max-width: 640px) {
  .contact-bento__call-inner {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 1.1rem 1rem 1.2rem;
  }
}

.contact-bento__call-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 20px;
  background: rgb(14, 23, 42);
  color: #ffffff;
}
.contact-bento__call-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.contact-bento__call-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-bento__call-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-bento__call-number {
  font-size: clamp(1.25rem, 4.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink);
}

.contact-bento__call-hint {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

.contact-bento__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.25rem);
}
@media (max-width: 640px) {
  .contact-bento__grid {
    grid-template-columns: 1fr;
  }
}

.contact-bento__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  padding: clamp(1.35rem, 3.5vw, 1.65rem);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-bento__card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-card-hover);
}
@media (max-width: 640px) {
  .contact-bento__card {
    padding: 1rem;
  }
}

.contact-bento__card--address {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-bento__card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.contact-bento__card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-bento__card-title {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-bento__card--address .contact-bento__card-title {
  margin-top: 0.15rem;
}

.contact-bento__card-body {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-ink);
}

.contact-bento__card-lead {
  margin: 0.35rem 0 1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.contact-bento__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-bento__social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--color-border);
  background: var(--color-bg-muted);
  color: var(--color-ink);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease;
}
.contact-bento__social svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.contact-bento__social:hover {
  transform: translateY(-1px);
}
.contact-bento__social:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.contact-bento__social--fb:hover {
  border-color: rgba(24, 119, 242, 0.45);
  background: rgba(24, 119, 242, 0.08);
  color: #1877f2;
}

.contact-bento__social--ig:hover {
  border-color: rgba(225, 48, 108, 0.45);
  background: rgba(225, 48, 108, 0.07);
  color: #d62976;
}

[data-theme=dark] .contact-bento__social--fb:hover {
  background: rgba(24, 119, 242, 0.15);
  color: #6eb5ff;
}

[data-theme=dark] .contact-bento__social--ig:hover {
  background: rgba(225, 48, 108, 0.12);
  color: #f472b6;
}

[data-theme=dark] .section--contact::before {
  background: radial-gradient(120% 80% at 50% -20%, rgba(56, 189, 248, 0.12) 0%, transparent 55%);
}

.site-footer {
  padding: 1.25rem 0;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  transition: background 0.35s ease, color 0.35s ease;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}
@media (max-width: 640px) {
  .site-footer__inner {
    justify-content: center;
    text-align: center;
  }
}

.site-footer__logo {
  height: 58px;
  width: auto;
  opacity: 0.98;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer__top {
  color: var(--footer-accent);
  font-weight: 600;
  font-size: 0.88rem;
}
.site-footer__top:hover {
  color: var(--color-accent-hover);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal[aria-hidden=true] .modal__dialog {
  transform: scale(0.94) translateY(16px);
}
.modal.is-open .modal__dialog {
  transform: scale(1) translateY(0);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  width: min(100%, 700px);
  max-height: min(90vh, 880px);
  overflow: hidden;
  background: var(--color-surface);
  border-radius: 32px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease, border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__close:hover {
  background: var(--color-surface);
  transform: scale(1.05);
}

.modal__body {
  padding: 1.35rem 1.35rem 1.5rem;
}
@media (max-width: 640px) {
  .modal__body {
    padding: 1rem;
  }
}

.modal__top {
  display: grid;
  grid-template-columns: minmax(240px, 44%) 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
@media (max-width: 760px) {
  .modal__top {
    grid-template-columns: 1fr;
  }
}

.modal__media {
  border-radius: 26px;
  overflow: hidden;
  background: #0a0a0a;
}

.modal__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
}

.modal__text {
  padding: 0;
}

.modal__title {
  margin: 0 0 0.4rem;
  font-size: 0.875rem;
  padding-right: 3rem;
  color: var(--color-ink);
}

.modal__date {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 0.59rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent-muted);
}

.modal__pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 0.9rem;
}

.modal__old-price {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.modal__current-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
}

.modal__discount {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-accent) 16%, transparent);
  color: var(--color-accent);
  font-size: 0.66rem;
  font-weight: 700;
}

.modal__short-description {
  color: var(--color-text);
  font-size: 0.71rem;
  line-height: 1.6;
}

.modal__description {
  color: var(--color-text-muted);
  font-size: 0.69rem;
  line-height: 1.65;
}
.modal__description .modal__description-lead {
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.modal__description .modal__description-rest {
  margin: 0;
  max-height: min(34vh, 270px);
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-gutter: stable;
}
.modal__description p {
  margin: 0 0 0.85rem;
}
.modal__description ul,
.modal__description ol {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}
.modal__description li {
  margin: 0.2rem 0;
}
.modal__description a {
  color: var(--color-accent-muted);
  font-weight: 600;
}
.modal__description strong {
  color: var(--color-ink);
}
.modal__description blockquote {
  margin: 0 0 0.85rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 3px solid var(--color-border-strong);
  color: var(--color-text);
}
.modal__description h1,
.modal__description h2,
.modal__description h3 {
  margin: 0.5rem 0 0.65rem;
  font-family: "TBC Contractica", "Noto Sans Georgian", "DM Sans", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: var(--color-ink);
  font-size: 1.05rem;
}

.tours-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-radius: 26px;
  border: 1px dashed var(--color-border-strong);
  font-size: 1.02rem;
}
