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

:root {
  --bg:       #faf8f4;
  --bg-alt:   #f2ede4;
  --dark:     #1e1a13;
  --text:     #2e2820;
  --muted:    #8a7d6d;
  --gold:     #b8892a;
  --gold-lt:  #d4a84a;
  --border:   #e0d6c8;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #fefcf9;
  border-bottom: 1px solid var(--border);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 40px;
  display: block;
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* PAGE HERO */
.page-hero {
  background: var(--bg-alt);
  padding: 72px 56px 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-sub {
  color: var(--muted);
  max-width: 540px;
  font-size: 1.05rem;
}

/* SECTIONS */
.section { padding: 80px 56px; }
.section.alt { background: var(--bg-alt); }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section-label {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.rule {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 40px;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,26,19,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  padding: 7px 16px;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-alt);
}
.card-item img {
  width: 100%; display: block;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform .5s ease;
}
.card-item:hover img { transform: scale(1.04); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,8,5,.92);
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}
.lb-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2rem; color: #aaa;
  cursor: pointer; background: none; border: none;
  transition: color .2s;
}
.lb-close:hover { color: #fff; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.45);
  text-align: center;
  padding: 48px 56px;
  font-size: .78rem;
  letter-spacing: .06em;
}
footer img { height: 36px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .6; }
footer a { color: var(--gold-lt); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links {
  display: flex; justify-content: center; gap: 32px;
  list-style: none; margin-bottom: 20px;
}
.footer-links a { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-links a:hover { color: var(--gold-lt); }

/* HAMBURGER */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
nav.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .hamburger span:nth-child(2) { opacity: 0; }
nav.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 880px) {
  nav { padding: 0 24px; position: relative; flex-wrap: wrap; height: auto; min-height: 64px; }
  .nav-logo { padding: 12px 0; }
  .hamburger { display: flex; margin-left: auto; }
  .page-hero, .section { padding-left: 24px; padding-right: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    flex-direction: column; gap: 0;
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 10px 0;
    font-size: .8rem;
  }
}
