:root {
  --ink: #1a1a1a;
  --paper: #fdfcfa;
  --muted: #6b6b6b;
  --line: #e7e3dd;
  --accent: #b3552f;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span { color: var(--accent); }

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  max-width: 720px;
  margin: 0 0 20px;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 0 40px;
}

.tile {
  margin: 0;
  break-inside: avoid;
  cursor: pointer;
}

.tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.tile--tall img { height: 380px; }

.tile:hover img {
  opacity: 0.85;
  transform: translateY(-2px);
}

.tile figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .tile img, .tile--tall img { height: 300px; }
}

/* About / Contact */
.about, .contact {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  max-width: 640px;
}

.about h2, .contact h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 14px;
}

.about p, .contact p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 28px 0;
}

.site-footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}
