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

body {
  background: linear-gradient(#f7f7f7, #ffffff);
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  cursor: pointer;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #111;
}

nav button {
  padding: 8px 16px;
  background: #111;
  color: #fff;
  border: none;
}

/* WRAPPER */
.wrapper {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* HERO */
.hero {
  margin-bottom: 80px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
}

/* CARD SYSTEM */
.card {
  background: #fff;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.img {
  position: relative;
  overflow: hidden;
}

.img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT */
.img span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: 0.3s;
}

.img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

.img:hover img {
  transform: scale(1.08);
}

.img:hover::after {
  opacity: 1;
}

.img:hover span {
  opacity: 1;
}

/* QUOTE */
.quote {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}

/* INFO */
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}

button {
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* MOBILE */
@media (max-width: 800px) {
  .hero h1 {
    font-size: 40px;
  }

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

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