/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --text: #222222;
  --muted: #666666;
  --accent: #c8a96a;
  --accent-dark: #9f7d3f;
  --border: #e7e1d8;
  --footer: #2f2a24;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 800px;
}

/* HEADER */
.site-header {
  background: rgba(247, 245, 242, 0.94);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}

/* NAV */
.nav-area {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-dark);
}

.nav-dropdown {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
}

.nav-dropdown > a::after {
  content: " ▾";
  font-size: 12px;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  display: none;
  flex-direction: column;
  min-width: 210px;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: none;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  z-index: 2000;
}

.dropdown-menu a {
  padding: 12px 16px;
  color: #333;
  border-bottom: 1px solid #f0ece6;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f4efe7;
  color: var(--accent-dark);
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

/* HEADER TOOLS */
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tools a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.header-tools a:hover,
.header-tools .active {
  color: var(--accent-dark);
}

.lang {
  font-weight: 700;
}

.social-link {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.25s ease;
}

.social-link:hover {
  border-color: var(--accent);
  background: #f4efe7;
}

/* HERO */
.hero {
  padding: 44px 0 20px;
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

/* ABOUT */
.about-section {
  padding: 80px 0;
  text-align: center;
}

.about-section h1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.about-images img {
  width: 100%;
  border-radius: 18px;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-images img:hover {
  transform: translateY(-4px);
}

.about-text {
  max-width: 650px;
  margin: 0 auto;
}

.about-text h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.about-text p {
  color: var(--muted);
}

/* VIDEO */
.video-section {
  padding: 60px 0;
  text-align: center;
}

.video-section h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

.video-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

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

.video-caption {
  margin-top: 16px;
  color: var(--muted);
}

/* PAGE INTRO */
.page-intro {
  padding: 76px 0 32px;
  text-align: center;
}

.page-intro h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.page-intro p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
}

/* GALLERY */
.gallery-section {
  padding: 30px 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}

.gallery-item {
  background: var(--surface);
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.13);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: 0.25s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-close {
  top: 25px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 70px;
  font-size: 50px;
  border-radius: 12px;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* LOAD MORE */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

#loadMoreBtn {
  padding: 13px 32px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

#loadMoreBtn:hover {
  background: var(--accent-dark);
}

/* KONTAKT */
.contact-page {
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.contact-lead {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: block;
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.contact-card span {
  display: block;
  color: #777;
  font-size: 13px;
  margin-bottom: 5px;
}

.contact-card strong {
  font-size: 17px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.btn-secondary:hover {
  background: #f4efe7;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* FOOTER */
.site-footer {
  background: var(--footer);
  color: #d8d0c5;
  padding: 24px 0;
  margin-top: 60px;
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8d0c5;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-link:hover {
  color: var(--accent);
}

.icon {
  font-size: 16px;
}

.footer-copy {
  font-size: 13px;
  text-align: center;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 29, 23, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 2500;
  transition: 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100vh;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,245,242,0.98));
  z-index: 2600;
  transform: translateX(100%);
  transition: 0.35s ease;
  padding: 24px;
  box-shadow: -25px 0 70px rgba(0,0,0,0.25);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-head strong {
  display: block;
  font-size: 22px;
  color: var(--text);
}

.mobile-menu-head small {
  display: none;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu > a,
.mobile-menu-group > a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(231,225,216,0.75);
}

.mobile-menu > a:hover,
.mobile-menu-group > a:hover {
  color: var(--accent-dark);
}

.mobile-menu-group {
  margin: 8px 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mobile-menu-group span {
  display: block;
  color: var(--accent-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 6px;
}

.mobile-menu-group > a {
  font-size: 18px;
  font-weight: 500;
  padding: 11px 0;
}

.mobile-menu-group > a:last-child {
  border-bottom: none;
}

.mobile-menu-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.mobile-langs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-langs a {
  flex: 1;
  text-align: center;
  padding: 11px 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.mobile-langs a:hover {
  background: #f4efe7;
  color: var(--accent-dark);
}

.mobile-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-socials a {
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--footer);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.mobile-socials a:hover {
  background: var(--accent-dark);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .header-inner {
    height: auto;
    padding: 12px 20px;
  }

  .main-nav {
    display: none;
  }

  .header-tools {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-area {
    gap: 0;
  }

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

  .contact-info h1 {
    font-size: 36px;
  }

  .contact-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .about-images {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }

  .gallery-item img {
    height: 130px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 56px;
    font-size: 38px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}