:root{
  --bg:#fbfaf7;
  --ink:#101010;
  --muted:#555;
  --rule:rgba(16,16,16,.10);
  --max: 980px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

a{color:inherit; text-decoration-thickness: from-font; text-underline-offset: 0.18em;}
a:hover{opacity:.8}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 56px);
}

.masthead{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding-top: 8px;
  padding-bottom: clamp(16px, 3vw, 28px);
  border-bottom: 1px solid var(--rule);
}

.portrait{
  width: 260px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(16,16,16,.20);
  background: #fff;
  padding: 10px 10px 28px 10px; /* “instant film” bottom margin */
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  background:#f0f0f0;
}

h1{
  margin: 0 0 10px 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
}

.lede{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}

.links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 16px;
}
.links a{
  padding: 6px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-decoration: none;
}

.editorial{
  padding-top: clamp(22px, 3vw, 34px);
  font-size: 18px;
  line-height: 1.85;
  max-width: 68ch;
}
.editorial h2{
  margin: 30px 0 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.editorial ul{
  padding-left: 1.2em;
  margin: 8px 0 0;
}
.fine{
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer{
  margin-top: clamp(40px, 6vw, 80px);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 14px;
}

.pagehead{
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.back{
  display:inline-block;
  margin-bottom: 12px;
  text-decoration:none;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.back:hover{border-bottom-color: var(--rule);}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

@media (max-width: 760px){
  .masthead{grid-template-columns: 1fr;}
  .portrait{width: min(340px, 100%);}
}
.social-links {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
}

.social-links a {
  color: #111;
  opacity: 0.45;
  transition: opacity 0.35s ease;
}

.social-links a:hover {
  opacity: 0.85;
}

.social-links svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.25;
}
.elsewhere {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 1.25rem;
}


