:root {
  --bg: #080908;
  --panel: #101210;
  --panel-2: #151712;
  --green: #254935;
  --red: #ba0b2f;
  --gold: #c8a25a;
  --text: #f7f3ea;
  --muted: #c9c0b3;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  min-height: 72px;
  background: rgba(8, 9, 8, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 126px;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 36px);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-left: 4px;
  border: 1px solid var(--line);
}

.language-switch a {
  min-width: 34px;
  padding: 6px 8px;
  text-align: center;
  color: var(--muted);
}

.language-switch a::after {
  display: none;
}

.language-switch a[aria-current="page"] {
  background: var(--gold);
  color: #10100d;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 7px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-youtube,
.hero-youtube iframe,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::before {
  z-index: -2;
  background: url("../img/gallery/lara-tabela.jpg") center / cover;
  content: "";
}

.hero-youtube {
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-youtube.is-ready {
  opacity: 1;
}

.hero-youtube iframe {
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(80px, 14vh, 150px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Maven Pro", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(31px, 4.2vw, 58px);
  font-weight: 900;
}

h3 {
  font-size: 20px;
}

.hero-copy,
.section-inner > p,
.split-copy p,
.feature-content p {
  color: var(--muted);
}

.hero-copy {
  max-width: 620px;
  margin: 22px auto 34px;
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #10100d;
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--text);
  color: var(--bg);
}

.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0;
}

.center {
  text-align: center;
}

.center p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-band {
  background: var(--red);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 650px;
  background: var(--panel);
}

.split-section-reverse {
  background: #0b0b0a;
}

.split-media {
  min-height: 520px;
  background-position: center;
  background-size: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 108px);
}

.split-copy p {
  max-width: 580px;
}

.text-link {
  width: fit-content;
  margin-top: 14px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-family: "Maven Pro", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.highlights-section {
  background: var(--panel-2);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
}

.highlight-grid div {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-band::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  content: "";
}

.feature-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #000;
}

.gallery-strip a {
  height: 260px;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-strip a:hover img {
  transform: scale(1.05);
}

.contact-section {
  background: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
}

.contact-item {
  min-height: 210px;
  padding: 32px;
  background: rgba(0, 0, 0, 0.18);
}

.contact-item p {
  margin: 9px 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 64px);
  background: #050505;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  display: grid;
  align-items: center;
  min-height: 320px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    url("../img/gallery/lara-salon.jpg") center / cover;
}

.page-hero .section-inner {
  padding: 72px 0;
}

.page-hero h1 {
  font-size: clamp(24px, 4vw, 54px);
}

.gallery-page {
  padding: clamp(34px, 6vw, 72px) clamp(16px, 3vw, 44px);
  background: #0a0a0a;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.gallery-filter button {
  min-width: 116px;
  min-height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-filter button:hover,
.gallery-filter button.is-active {
  background: var(--gold);
  color: #10100d;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  opacity: 0.82;
}

.gallery-card.is-hidden {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 88svh;
  box-shadow: 0 24px 80px var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.56);
  color: var(--text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 26px 28px 32px;
    background: rgba(8, 9, 8, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    font-size: 18px;
  }

  .split-section,
  .split-section-reverse {
    grid-template-columns: 1fr;
  }

  .split-section-reverse .split-copy {
    order: 2;
  }

  .split-section-reverse .split-media {
    order: 1;
  }

  .contact-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    padding: 14px 18px;
  }

  .brand {
    width: 108px;
  }

  .hero-content {
    padding-bottom: 70px;
  }

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

  .split-copy {
    padding: 44px 22px;
  }

  .split-media {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .gallery-filter button {
    min-width: 0;
    padding: 0 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
