﻿:root {
  --bg-deep: #060d1e;
  --bg-navy: #0f2240;
  --bg-wine: #4f1221;
  --accent-red: #b42848;
  --accent-blue: #2d7bff;
  --accent-cyan: #4fd0ff;
  --text-main: #edf2ff;
  --text-muted: #b7c0d8;
  --line-soft: rgba(255, 255, 255, 0.2);
  --line-strong: rgba(255, 255, 255, 0.28);
  --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  --glass-shadow: 0 24px 55px rgba(4, 11, 24, 0.5);
  --header-bg: linear-gradient(120deg, rgba(5, 12, 24, 0.76), rgba(13, 24, 46, 0.62));
  --surface-soft: rgba(255, 255, 255, 0.08);
  --surface-soft-strong: rgba(255, 255, 255, 0.12);
  --caption-bg: rgba(8, 16, 31, 0.68);
  --overlay-bg: rgba(4, 10, 20, 0.68);
  --link-color: #d9e8ff;
  --footer-text: #becce5;
  --glow-cyan: rgba(79, 208, 255, 0.12);
  --glow-red: rgba(180, 40, 72, 0.22);
  --glow-blue: rgba(45, 123, 255, 0.14);
  --orb-blue: rgba(45, 123, 255, 0.35);
  --orb-red: rgba(180, 40, 72, 0.32);
  --orb-cyan: rgba(79, 208, 255, 0.2);
  --kicker-border: rgba(79, 208, 255, 0.5);
  --kicker-bg: rgba(79, 208, 255, 0.14);
  --active-border: rgba(255, 255, 255, 0.35);
  --split-start: rgba(79, 208, 255, 0.12);
  --split-end: rgba(180, 40, 72, 0.18);
  --news-accent: rgba(180, 40, 72, 0.74);
  --news-meta: #b7dbff;
  --dot-bg: rgba(255, 255, 255, 0.45);
  --dot-active: #ffffff;
  --selected-border: rgba(79, 208, 255, 0.5);
  --selected-bg: rgba(79, 208, 255, 0.08);
  --focus-outline: rgba(79, 208, 255, 0.34);
  --focus-border: rgba(79, 208, 255, 0.7);
  --input-placeholder: #adc1e1;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

:root[data-theme="light"] {
  --bg-deep: #f6f8ff;
  --bg-navy: #e8eefc;
  --bg-wine: #f8f3f0;
  --accent-red: #ac3957;
  --accent-blue: #265ed6;
  --accent-cyan: #2b98c1;
  --text-main: #15233c;
  --text-muted: #495a7b;
  --line-soft: rgba(22, 35, 60, 0.17);
  --line-strong: rgba(22, 35, 60, 0.25);
  --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(243, 248, 255, 0.78));
  --glass-shadow: 0 18px 36px rgba(36, 53, 86, 0.18);
  --header-bg: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(240, 246, 255, 0.88));
  --surface-soft: rgba(23, 40, 73, 0.06);
  --surface-soft-strong: rgba(23, 40, 73, 0.11);
  --caption-bg: rgba(255, 255, 255, 0.88);
  --overlay-bg: rgba(20, 31, 56, 0.44);
  --link-color: #214cb0;
  --footer-text: #4b5d80;
  --glow-cyan: rgba(43, 152, 193, 0.1);
  --glow-red: rgba(172, 57, 87, 0.12);
  --glow-blue: rgba(38, 94, 214, 0.12);
  --orb-blue: rgba(38, 94, 214, 0.22);
  --orb-red: rgba(172, 57, 87, 0.2);
  --orb-cyan: rgba(43, 152, 193, 0.16);
  --kicker-border: rgba(43, 152, 193, 0.48);
  --kicker-bg: rgba(43, 152, 193, 0.12);
  --active-border: rgba(255, 255, 255, 0.25);
  --split-start: rgba(43, 152, 193, 0.12);
  --split-end: rgba(172, 57, 87, 0.12);
  --news-accent: rgba(172, 57, 87, 0.72);
  --news-meta: #2f5d95;
  --dot-bg: rgba(21, 35, 60, 0.28);
  --dot-active: #15233c;
  --selected-border: rgba(43, 152, 193, 0.48);
  --selected-bg: rgba(43, 152, 193, 0.1);
  --focus-outline: rgba(43, 152, 193, 0.3);
  --focus-border: rgba(43, 152, 193, 0.6);
  --input-placeholder: #7587a8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 8% 5%, var(--glow-cyan) 0%, transparent 33%),
    radial-gradient(circle at 88% 12%, var(--glow-red) 0%, transparent 30%),
    radial-gradient(circle at 26% 88%, var(--glow-blue) 0%, transparent 30%),
    linear-gradient(170deg, var(--bg-deep), var(--bg-navy) 46%, var(--bg-wine));
  min-height: 100vh;
  line-height: 1.6;
  transition: background 0.25s ease, color 0.25s ease;
}

a {
  color: var(--link-color);
}

img,
iframe {
  max-width: 100%;
}

.app-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.5px);
  z-index: 0;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, var(--orb-blue), rgba(45, 123, 255, 0));
}

.orb-two {
  width: 430px;
  height: 430px;
  bottom: -150px;
  left: -130px;
  background: radial-gradient(circle, var(--orb-red), rgba(180, 40, 72, 0));
}

.orb-three {
  width: 260px;
  height: 260px;
  top: 35%;
  left: 40%;
  background: radial-gradient(circle, var(--orb-cyan), rgba(79, 208, 255, 0));
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-soft);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  min-width: 50%;
}

.site-header .container.nav-wrap {
  width: min(1360px, 96vw);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  min-width: 0;
  flex: 0 1 360px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
  padding: 3px;
  filter: drop-shadow(0 8px 16px rgba(7, 13, 25, 0.45));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100%;
  max-width: 100%;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text-main);
  min-height: 40px;
  padding: 0 12px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--surface-soft-strong);
}

.theme-toggle-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface-soft);
}

.lang-btn {
  border: 0;
  border-right: 1px solid var(--line-soft);
  background: transparent;
  color: var(--text-main);
  min-width: 38px;
  height: 34px;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.lang-btn:last-child {
  border-right: 0;
}

.lang-btn:hover {
  background: var(--surface-soft-strong);
}

.lang-btn.active {
  background: linear-gradient(130deg, var(--accent-blue), var(--accent-red));
  color: #fff;
}

.lang-switch.compact .lang-btn {
  min-width: 34px;
  height: 32px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-main);
  margin: 0 auto;
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 10px;
  font-size: 0.94rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: var(--surface-soft-strong);
  transform: translateY(-1px);
}

.site-nav a.active {
  background: linear-gradient(130deg, var(--accent-blue), var(--accent-red));
  border: 1px solid var(--active-border);
  color: #fff;
}

main {
  padding: 58px 0 76px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.16;
  letter-spacing: 0.01em;
  margin-top: 0;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  max-width: 16ch;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  margin-bottom: 10px;
}

h3 {
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  margin-bottom: 8px;
}

p,
li,
span {
  color: var(--text-muted);
}

.hero {
  margin-top: 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.hero-main {
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -85px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orb-cyan), rgba(79, 208, 255, 0));
}

.kicker {
  display: inline-flex;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--kicker-border);
  background: var(--kicker-bg);
  color: var(--text-main);
  font-weight: 700;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--accent-red), var(--accent-blue));
  box-shadow: 0 12px 24px rgba(6, 17, 32, 0.34);
  border-color: var(--active-border);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited {
  color: #fff;
}

.btn-outline {
  color: var(--text-main);
  background: var(--surface-soft);
  border-color: var(--line-strong);
}

.hero-side {
  display: grid;
  gap: 12px;
}

.metric {
  padding: 16px;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-main);
}

.section {
  margin-top: 34px;
}

.section-head {
  margin-bottom: 18px;
}

.dual-cards,
.grid-2,
.grid-3,
.about-media-layout,
.contact-layout,
.rental-grid {
  display: grid;
  gap: 16px;
}

.dual-cards,
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-media-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.contact-layout {
  grid-template-columns: 0.92fr 1.08fr;
}

.rental-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card {
  padding: 22px;
}

.split-highlight {
  position: relative;
  overflow: hidden;
}

.split-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, var(--split-start), var(--split-end));
}

.split-highlight > * {
  position: relative;
}

.quote {
  color: var(--text-main);
  font-size: clamp(1.25rem, 2.4vw, 1.95rem);
  line-height: 1.34;
  margin: 0;
}

.news-item {
  border-left: 4px solid var(--news-accent);
}

.news-meta {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--news-meta);
  margin-bottom: 8px;
  font-weight: 700;
}

.map-frame {
  width: 100%;
  height: 295px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  margin: 10px 0 12px;
}

.fb-frame {
  width: 100%;
  min-height: 620px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.fb-frame iframe {
  width: 100%;
  min-height: 700px;
}

.slideshow {
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.slide.is-active {
  opacity: 1;
}

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

.slide-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 10px;
  background: var(--caption-bg);
  color: var(--text-main);
  font-size: 0.85rem;
}

.slide-dots {
  position: absolute;
  bottom: 3%;
  left: 43%;
  display: flex;
  gap: 6px;
  z-index: 4;
}

.slide-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--dot-bg);
  cursor: pointer;
}

.slide-dots button.active {
  background: var(--dot-active);
}

.photo-scatter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.photo-scatter.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-tile {
  padding: 10px;
  overflow: hidden;
}

.photo-tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  display: block;
}

.photo-tile figcaption {
  margin-top: 8px;
  font-size: 0.84rem;
}

.shop-inline-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  margin-bottom: 12px;
}

.about-photo-panel {
  align-self: start;
}

.rental-card {
  display: grid;
  gap: 12px;
}

.rental-link {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0;
  display: block;
  overflow: hidden;
  background: var(--surface-soft);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

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

.rental-body {
  padding: 12px;
}

.rental-meta {
  font-size: 0.86rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--overlay-bg);
}

.modal.open {
  display: flex;
}

.modal-dialog {
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: auto;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.modal-close {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  background: var(--surface-soft-strong);
  color: var(--text-main);
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 16px;
}

.modal-main-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
}

.modal-thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.modal-thumbs button {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--surface-soft);
}

.modal-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.selected-listing {
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px dashed var(--selected-border);
  background: var(--selected-bg);
  color: var(--text-main);
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-row {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.info-row strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-main);
}

.contact-map-title {
  margin-top: 16px;
}

.contact-maps {
  display: grid;
  gap: 12px;
}

.mini-map-title {
  margin: 0 0 6px;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--text-main);
  background: var(--surface-soft);
}

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

input::placeholder,
textarea::placeholder {
  color: var(--input-placeholder);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--focus-outline);
  border-color: var(--focus-border);
}

.note {
  font-size: 0.88rem;
}

.thanks-main {
  max-width: 780px;
  margin: 40px auto;
}

.top-gap {
  margin-top: 14px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0 34px;
  color: var(--footer-text);
  font-size: 0.9rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-layout span {
  color: var(--footer-text);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-contact {
  color: var(--footer-text);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact:hover {
  text-decoration: underline;
}

.fb-icon-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  background: var(--surface-soft);
}

.fb-icon-link:hover {
  background: var(--surface-soft-strong);
}

.fb-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle-footer {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.8rem;
}

.reveal {
  animation: fade-up 0.65s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-media-layout,
  .contact-layout,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .rental-grid,
  .photo-scatter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-scatter.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand-text small {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-soft);
    order: 3;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    font-size: 0.98rem;
    border-radius: 10px;
    text-align: left;
  }

  .site-nav a:hover {
    transform: none;
  }

  .nav-wrap {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .dual-cards,
  .grid-2,
  .grid-3,
  .rental-grid,
  .photo-scatter,
  .photo-scatter.compact {
    grid-template-columns: 1fr;
  }

  .slideshow {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .hero-main,
  .glass-card {
    padding: 18px;
  }

  .brand-text small {
    display: none;
  }

  .theme-toggle-footer span:last-child {
    display: none;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .photo-tile img,
  .shop-inline-photo {
    height: 180px;
  }

  main {
    padding-top: 36px;
  }
}
