:root{
  --bg:#fbfbfb;
  --ink:#111;
  --muted:#666;
  --max:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  background:var(--bg);
  color:var(--ink);
}

.top{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(251,251,251,.86);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.brand{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  gap:10px;
  align-items:baseline;
}
.brand__name{font-weight:600; letter-spacing:.02em;}
.brand__sub{font-style:italic; color:var(--muted);}

.story{
  max-width:1600px;
  margin:0 auto;
  padding:46px 18px 80px;
  display:flex;
  flex-direction:column;
  gap:72px;
}

.block{display:flex; flex-direction:column; align-items:center; gap:22px;}

.grid{
  width:100%;
  max-width:var(--max);
  display:grid;
  gap:18px;
}
.grid--small2{grid-template-columns:1fr; max-width:900px;}
.grid--medium2{grid-template-columns:1fr; max-width:1200px;}
@media(min-width:900px){
  .grid--small2{grid-template-columns:1fr 1fr;}
  .grid--medium2{grid-template-columns:1fr 1fr;}
}

.shot{margin:0}
.shot img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.shot--small{max-width:520px;}
.shot--medium{max-width:820px;}
.shot--wide{max-width:1200px;}
.shot--portrait{max-width:680px;}

.shot--full{width:100%; max-width:none;}
.shot--full img{
  border-radius:0;
  box-shadow:none;
  width:100%;
  max-height:92vh;
  object-fit:cover;
}

.whisper{
  max-width:var(--max);
  margin:0 auto;
  font-size:18px;
  font-style:italic;
  color:var(--muted);
  text-align:center;
}

.note{
  max-width:680px;
  margin:0 auto;
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  text-align:center;
}

.sig{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.06);
  text-align:center;
}
.sig__brand{font-weight:600; letter-spacing:.02em;}
.sig__sub{font-style:italic; color:var(--muted); margin-top:4px;}
.sig__mail{
  display:inline-block;
  margin-top:10px;
  color:var(--ink);
  text-decoration:none;
  opacity:.75;
}
.sig__mail:hover{opacity:1}