* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #2c2520;
  background: #fbf8f3;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: center 15%;
  filter: brightness(58%);
}

.hero-text {
  position: relative;
  max-width: 760px;
  color: white;
  padding: 32px;
transform: translate(-120px, -20px);
}

h1 {
  font-size: clamp(40px, vw, 72px);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

h2 {
  font-size: 32px;
  margin: 0 0 20px;
  font-weight: 400;
}

.hero p {
  font-size: 20px;
  margin: 0 auto 32px;
  max-width: 620px;
}

.button {
  display: inline-block;
  color: white;
  border: 1px solid white;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.button:hover {
  background: white;
  color: #2c2520;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 72px 0;
}

.about,
.contact {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gallery-section h2 {
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  border-radius: 2px;
}

.contact a {
  color: #2c2520;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  object-fit: contain;
}

.close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: transparent;
  border: 0;
  color: white;
  font-size: 44px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 640px) {
  .hero-text {
    padding: 16px;
  }

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

  section {
    padding: 48px 0;
  }
}
.about-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.about {
    padding-top: 30px;
}