:root {
  --bg: #000000;
  --text: #d8cb90;
  --text-soft: #c4b97f;
  --panel: #111111;
  --accent: #9e8d45;
  --border: #3d3520;
  --shadow: rgba(216, 203, 144, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 20%, #151515, #000000 45%), var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 180px;
  width: auto;
  object-fit: contain
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #f4ebbf;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(180deg, #050505, #0d0d0d);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.hero {
  padding: 60px 0 90px;
}

.hero-content > p {
  color: var(--text-soft);
  max-width: 60ch;
}

.slider {
  position: relative;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background-color: #080808;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--text);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 2;
}

.slider-control:hover,
.slider-control:focus-visible {
  background: rgba(216, 203, 144, 0.17);
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

.section-intro {
  color: var(--text-soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.gallery-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #090909;
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #0b0b0b;
  color: var(--text);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

.contact-form button {
  margin-top: 8px;
  border: 1px solid var(--text);
  background: var(--accent);
  color: #090909;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  filter: brightness(1.08);
}

.form-status {
  min-height: 1.4em;
  color: #e8dea8;
}

.map-wrapper {
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 1200;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: min(1100px, 95vw);
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  right: 26px;
  top: 18px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  cursor: pointer;
}

.empty-state {
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #050505;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-inner a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 64px 0;
  }

  .nav-wrapper {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .nav-menu {
    justify-content: center;
    gap: 12px;
  }

  .slide {
    aspect-ratio: 4 / 3;
  }
}
