:root {
  --paper: #f5f0e8;
  --ink: #151515;
  --muted: #7e766d;
  --line: #d8d0c3;
  --soft: #ebe4d8;
  --white: #fffaf2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(245, 240, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

main {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 16px 56px;
}

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 84px 0 42px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
}

h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
}

.intro {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section {
  padding: 42px 0 10px;
}

.section-head {
  margin-bottom: 18px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--soft);
}

.card h3 {
  margin: 12px 0 6px;
  font-size: 20px;
  font-weight: 500;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.viewer {
  padding: 34px 0 0;
}

.viewer-head {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.ghost {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}

.photo-flow {
  display: grid;
  gap: 14px;
}

.photo-flow img {
  width: 100%;
  display: block;
  background: var(--soft);
}

.contact {
  margin-top: 50px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.8;
}

@media (min-width: 720px) {
  .site-header { padding: 18px 28px; }
  main { padding-inline: 28px; }
  h1 { font-size: 86px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid.compact { grid-template-columns: repeat(3, 1fr); }
  .viewer-head { grid-template-columns: 120px 1fr; align-items: start; }
}

@media (min-width: 1080px) {
  h1 { font-size: 112px; }
  .hero { min-height: 62vh; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .grid.compact { grid-template-columns: repeat(4, 1fr); }
  .photo-flow { grid-template-columns: repeat(2, 1fr); align-items: start; }
}
