*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 16px;
}

/* ── Header ── */
.site-header {
  padding: 16px 0px;
}

.header-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.site-title {
  font-size: clamp(1rem, 5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.contact-info {
  font-size: 0.9rem;
  color: #333;
  font-weight: 400;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}



/* ── main_image ── */
.main_image {
  width: 100%;
  line-height: 0;
}

.main_image img {
  width: 100%;
  display: block;
}

/* ── Nav ── */
.site-nav {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.instagram-link img {
  width: 14px;
  height: 14px;
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.site-nav ul li {
  display: flex;
  align-items: center;
}

.site-nav ul li + li::before {
  content: '|';
  margin: 0 20px;
  color: #999;
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 400;
  color: #222;
}

.site-nav a:hover {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 650px) {
  .header-inner {
    flex-direction: column;
    gap: 4px;
  }
  .main_image {
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
}

/* ── Tile gallery ── */
.tile-gallery {
  display: flex;
  gap: 8px;
  padding: 8px 0 60px;
}

.tile-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.tile {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.tile:hover img,
.tile:focus-visible img {
  transform: scale(1.03);
}

@media (max-width: 650px) {
  .tile-gallery {
    gap: 6px;
  }
  .tile-col {
    gap: 6px;
  }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  position: fixed;
  object-fit: cover;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.lightbox.active .lightbox-close {
  opacity: 0.8;
}

.lightbox-close:hover {
  opacity: 1;
}

body.lightbox-open {
  overflow: hidden;
}