:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #67635c;
  --paper: #fbfaf7;
  --line: #ddd8cf;
  --accent: #496f5d;
  --accent-dark: #233c33;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 20, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.hero {
  min-height: 88svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 24, 20, 0.76), rgba(18, 24, 20, 0.36) 46%, rgba(18, 24, 20, 0.14)),
    url("optimized/IMG_9723.jpg") center / cover no-repeat;
}

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.95rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}

.nav-links a {
  text-decoration: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--accent-dark);
  background: var(--white);
}

.language-switch button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 clamp(58px, 11vh, 118px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

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

.contact-actions a,
.footer a {
  text-decoration: none;
}

.contact-actions a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  max-width: 100%;
  padding: 10px 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  overflow-wrap: anywhere;
  backdrop-filter: blur(10px);
}

.contact-actions span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions strong {
  font-size: 1rem;
  font-weight: 700;
}

.hero-address {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 20px;
  font-style: normal;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-address .separator {
  color: rgba(255, 255, 255, 0.46);
}

.hero-address a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.intro-section {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 74px) 0;
}

.intro {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  color: var(--accent-dark);
}

.gallery-section {
  padding: 0 clamp(18px, 4vw, 56px) clamp(56px, 8vw, 96px);
}

.section-heading {
  width: min(1220px, 100%);
  margin: 0 auto 22px;
}

.gallery {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.gallery button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #e6e1d8;
  cursor: pointer;
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (hover: hover) {
  .gallery button:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 28px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox {
  width: min(1120px, calc(100vw - 24px));
  height: min(820px, calc(100svh - 24px));
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(10, 12, 11, 0.86);
}

.lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(var(--shadow));
}

.lightbox button {
  position: absolute;
  z-index: 2;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
}

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

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
}

.lightbox-prev {
  left: 8px;
}

.lightbox-next {
  right: 8px;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 82svh;
    background-position: 42% center;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    padding-bottom: 42px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions a {
    align-items: center;
    text-align: center;
  }

  .hero-address {
    display: grid;
    gap: 4px;
    text-align: center;
  }

  .hero-address .separator {
    display: none;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
