@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500&display=swap');

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

:root {
  --bg: #faf7f2;
  --bg-alt: #f2ede2;
  --text: #2a2824;
  --text-muted: #6a6558;
  --text-faint: #b5ae9c;
  --border: #e5e0d5;
  --tile: #e6e0d0;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

header.site {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 40px 32px 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.2px;
}

.tagline {
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: 2.5px;
  margin-top: 6px;
  text-transform: uppercase;
}

nav.main a {
  margin-left: 28px;
  font-size: 14px;
  color: var(--text);
  transition: color 0.15s;
}

nav.main a:hover { color: var(--text-muted); }

.hero {
  max-width: 1080px;
  margin: 0 auto 8px;
  padding: 0 32px;
}

.hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-caption {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(20,18,14,0.55), rgba(20,18,14,0));
}

.hero-caption h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 34px;
  color: #faf7f2;
  line-height: 1.2;
}

.hero-caption p {
  font-size: 13px;
  color: #e3ddc9;
  margin-top: 6px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-faint);
  text-transform: uppercase;
  margin: 56px 0 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.gallery figure {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--tile);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery figure:hover img { transform: scale(1.04); }

.gallery figcaption {
  padding: 12px 14px 14px;
  background: var(--bg-alt);
}

.gallery figcaption .title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
}

.gallery figcaption .cat {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.about-teaser {
  max-width: 1080px;
  margin: 20px auto 60px;
  padding: 0 32px;
}

.about-card {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-card img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-card .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
}

.about-card .desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-card .more {
  margin-left: auto;
  font-size: 13px;
  border: 0.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

main.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 32px 60px;
}

main.page h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 24px;
}

main.page .portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
}

main.page p { margin-bottom: 16px; color: var(--text); }

main.page h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  margin: 28px 0 10px;
}

.notice {
  background: #f3e9db;
  border: 0.5px solid #ddc9a3;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #6b5330;
  margin-bottom: 28px;
}

footer.site {
  border-top: 0.5px solid var(--border);
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 32px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
}

footer.site a { color: var(--text-faint); }
footer.site a:hover { color: var(--text-muted); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,18,14,0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: #faf7f2;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 640px) {
  header.site { flex-direction: column; align-items: flex-start; gap: 14px; }
  nav.main a { margin-left: 0; margin-right: 20px; }
  .hero-image { height: 260px; }
  .hero-caption h1 { font-size: 24px; }
  .about-card { flex-wrap: wrap; }
  .about-card .more { margin-left: 0; }
}
