/* ── HERO ── */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
}


.menu-buttons {
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 100%;
  display: flex;
  gap: 140px;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.3s ease;
  background: rgba(79, 65, 55, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px 36px;
  border-radius: 12px;
}

.menu-button img {
  width: 180px;
  height: 180px;
}

.menu-button span {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-button:hover {
  transform: translateY(-5px);
  background: rgba(79, 65, 55, 0.9);
}

.tag-frame {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 22px;
}

.tag-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--accent-cream);
  border-left: 4px solid var(--accent-cream);
}

.tag-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-bottom: 4px solid var(--accent-cream);
  border-right: 4px solid var(--accent-cream);
}

.tag-text {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent-cream);
  line-height: 1.4;
}

/* ── GALLERI ── */
.gallery-section {
  padding: 4rem 0;
  overflow: clip;
  background: var(--bg-brown);
}

.gallery-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 14px;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.gallery-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: roll 46s linear infinite;
}

.gallery-image {
  width: 420px;
  height: 340px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.88);
  transition: filter 0.4s ease;
}

.gallery-image:hover {
  filter: brightness(1.02);
}

@keyframes roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO DARK ── */
.hero-wrapper--dark {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow: clip;
}

.hero-wrapper--dark::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('/images/home.webp');
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: 0;
}

.hero-wrapper--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--bg-brown));
  pointer-events: none;
  z-index: 1;
}

.hero-text-wrapper {
  text-align: center;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.22) 15%, rgba(0, 0, 0, 0.22) 85%, transparent);
  padding: 28px 80px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.hero-text {
  font-family: var(--font-body);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 10px 0;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.hero-wrapper--dark .menu-button {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  color: #ffffff;
  position: relative;
}

.hero-wrapper--dark .menu-button:hover {
  background: transparent;
  transform: translateY(-5px);
  opacity: 0.75;
}

.hero-wrapper--dark .menu-buttons {
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 2;
}

/* ── TEXT SECTION ── */
.text-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.text-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 14px;
}

.text-section p + .text-title {
  margin-top: 80px;
}

.text-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}

.text-section p {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
  margin: 0 0 20px 0;
}

.opening-note {
  font-size: 15px !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35) !important;
  letter-spacing: 0.06em;
  margin-top: -8px !important;
}

/* ── RESPONSIVE: TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .menu-buttons {
    gap: 70px;
    bottom: 160px;
  }

  .menu-button img {
    width: 140px;
    height: 140px;
  }

  .menu-button {
    padding: 20px 28px;
  }

  .hero-text {
    font-size: 24px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .gallery-image {
    width: 340px;
    height: 280px;
  }

  .text-section {
    padding: 60px 32px;
  }
}

/* ── RESPONSIVE: MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .hero-text-wrapper {
    white-space: normal;
    padding: 20px 28px;
    width: 100%;
    box-sizing: border-box;
    margin-top: -100px;
  }

  .hero-text {
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .hero-subtext {
    font-size: 17px;
  }

  .hero-wrapper--dark .menu-buttons {
    gap: 28px;
  }

  .hero-wrapper--dark .menu-button img {
    width: 115px;
    height: 115px;
  }

  .hero-wrapper--dark .menu-button {
    padding: 16px 20px;
  }

  .gallery-image {
    width: 265px;
    height: 215px;
  }

  .text-section {
    padding: 50px 22px;
  }

  .text-title {
    font-size: 14px;
  }

  .text-section p {
    font-size: 17px;
  }
}

/* ── RESPONSIVE: SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .hero-text {
    font-size: 21px;
    letter-spacing: 0.15em;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-wrapper--dark .menu-button img {
    width: 95px;
    height: 95px;
  }

  .hero-wrapper--dark .menu-buttons {
    gap: 16px;
  }

  .hero-wrapper--dark .menu-button {
    padding: 12px 14px;
  }

  .gallery-image {
    width: 220px;
    height: 178px;
  }
}
